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.
Asked
Active
Viewed 38 times
-1
-
1What have you tried so far? Please see [ask] – Yevhen Kuzmovych Jun 30 '23 at 15:01
-
It's not clear what you mean with "equating", either. – Marcus Müller Jun 30 '23 at 15:23
1 Answers
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