phase advancing of a signal by 90 degrees
25 ビュー (過去 30 日間)
古いコメントを表示
I want to sense a signal, and advance the phase of the signal by -90 degrees, keeping the magnitude of the signal same (in MATLAB Simulink). Please help.
I am attaching a simulation, where i tried to extract the magnitude and phase of the signal and added -90 °, and re-convert it. But it is not working.
0 件のコメント
回答 (1 件)
Walter Roberson
2020 年 1 月 27 日
Multiply the signal by -1i .
You can either do that by a multiplication, or by taking
complex(imag(TheSignal), -real(TheSignal))
8 件のコメント
Walter Roberson
2020 年 1 月 27 日
That is not changing the phase of the signal by 90 degrees: that is putting in a delay of either 1/4 or 3/4 of the period.
Clock times frequency times 2 π, minus phase, sine thereof.
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!