Why is my plot linear when the anonymous function z is clearly nonlinear?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Alexander Ruscitto
am 27 Sep. 2021
Kommentiert: John D'Errico
am 27 Sep. 2021
Rt = 10688; v = 18; f = 9; KD = 7.73*10^(-5); Kx = 5.8*10^(-5); L0 = 2*10^(-9);
Req = [6000:12000];
z = @(Req) ((Req.*(1+v.*(L0/KD).*(1+Kx*Req).^(f-1)))/Rt)-1;
figure
plot(Req,z(Req));
0 Kommentare
Akzeptierte Antwort
Matt J
am 27 Sep. 2021
It simply looks linear because you are plotting it over too narrow a range.
Req = 0:120000;
plot(Req,z(Req));
1 Kommentar
John D'Errico
am 27 Sep. 2021
The funny thing is, the range of [6000:12000] probably SEEMS wide. But width is a subjective thing in this case.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Motor Drives 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!