-1

I have two sinusoidal signals with different amplitude. I would like to equate the amplitude of the two signals. For instance, if the amplitude of the second signal is lower than the first signal's one, I want to equate both.

Marcus Müller
  • 34,677
  • 4
  • 53
  • 94
Roby
  • 25
  • 5

1 Answers1

0

I think you could normalize them:

A1 = B*sin(...);
A2 = C*sin(...)

A3 = A1/max(A1);
A4 = A2/max(A2)

Then you'll get to signals with amplitude 1

Yevhen Kuzmovych
  • 10,940
  • 7
  • 28
  • 48
dDiaz
  • 1
  • 3