Arrow on Nyquist plot
Mostra commenti meno recenti
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?
Risposte (2)
Anna
il 14 Ott 2014
0 voti
Kwin
il 16 Mag 2017
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.
Categorie
Scopri di più su Line Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!