Need to return a column vector?

3 Ansichten (letzte 30 Tage)
Andrew Davies
Andrew Davies am 19 Mai 2014
Beantwortet: Image Analyst am 19 Mai 2014
function dLdt = Lorentz(t,xyz)
x=xyz(1);
y=xyz(2);
z=xyz(3);
s = 10;
b = 8/3;
r = 0.5;
dx = s*(y - x)
dy = r*x - y - x*z
dz = x*y - b*z
dLdt = zeros(3,2,1);
dLdt(1)=dx;
dLdt(2)=dy;
dLdt(3)=dz;
I then tried calling this in another script and it said it needs to return a column vector?

Antworten (1)

Image Analyst
Image Analyst am 19 Mai 2014
Then, I assume xyz is a M by 3 array of coordinates, so you need to do
x = xyz(:,1);
y = xyz(:,2);
z = xyz(:,3);

Kategorien

Mehr zu Physics 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