How to solve 'vector must be the same length', 'functions behave unexpectedly' errors when graphing vector equation
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
수정 이
am 18 Sep. 2020
Kommentiert: Asad (Mehrzad) Khoddam
am 18 Sep. 2020
The vector equation is
r(t) = <3, t, 2-t^2>
first of all . I tried
t=linspace(-10,10);
x=3;
y=t;
z=2-(t.^2);
plot3(x,y,z)
I got 'plot3 error' - vector must be the same lengths
Second, I tried
t=linspace(-10,10);
xt=@(t) 3;
yt=@(t) t;
zt=@(t) 2-(t.^2);
fplot3(xt,yt,zt)
I got warning function behaves unexpectedly on array inputs
how can I solve it? I really appreciate any help.
1 Kommentar
Asad (Mehrzad) Khoddam
am 18 Sep. 2020
the code
t=linspace(-10,10);
uses the default number of divisions.
You can use more division like this:
t=linspace(-10,10,51);
% or
t=linspace(-10,10,201);
Akzeptierte Antwort
Asad (Mehrzad) Khoddam
am 18 Sep. 2020
in the first code, instead of
x=3;
use this one:
x=3*ones(size(t));
2 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Function Creation 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!