"Axis" function error

4 Ansichten (letzte 30 Tage)
kale
kale am 3 Okt. 2022
Bearbeitet: dpb am 5 Okt. 2022
I'm using axis function but there is this error:
How do I solve it?
Thanks!

Akzeptierte Antwort

dpb
dpb am 3 Okt. 2022
Bearbeitet: dpb am 5 Okt. 2022
-3 < 0 despite abs(3) being greater -- as the error message says, the axis limits have to be in strictly ascending order numerically, not in the order they appear on the drawn figure above...
Unfortunately we can't copy/paste figures instead of text, but the culprit line above should be
%axes([0 20 k 0])
when k<0
You don't need an axis command here at all, though, it will be created automagically when call
k=-3;tau=4;
G=tf(k,[tau 1]);
step(G)
xlim([0 20])
is simpler way to get there, anyway...

Weitere Antworten (0)

Kategorien

Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by