Arrow on Nyquist plot

조회 수: 9 (최근 30일)
Anna
Anna 2014년 10월 14일
답변: Kwin 2017년 5월 16일
I'd like to draw Nyquist plot with the arrow going from high frequency to low frequency (i.e, opposite direction as it is by default). Is it possible? It this is not possible, I'd rather not have the arrow on the curve, is this possible?

답변 (2개)

Anna
Anna 2014년 10월 14일
I use the nyquist command and I get the nyquist plot with the arrow going from low frequency to high frequecny. I'd like to have the arrow point the other way, instead.

Kwin
Kwin 2017년 5월 16일
Assuming a rational transfer function with real coefficients, then this can be done by inputting the complex conjugate of the original transfer function. This can be achieved by multiply each coefficient of odd powers of s by minus one. So for example:
>> figure, nyquist(tf([1 1],[1 1 2 0]))
>> figure, nyquist(tf([-1 1],[-1 1 -2 0]))
yields the same plots, but with the arrows pointing in the opposite direction.

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by