Why is my matrix a scalar?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Noya Linder
am 13 Jul. 2023
Bearbeitet: Torsten
am 13 Jul. 2023
Hi, so I've been trying to create a Z matrix to plot using "surf":
Z = [];
x = 0;
for tt = T
x = x+1;
y = 0;
for rr = R
y = y+1;
Z(x, y) = j_nu(3, R(y), T(x), R, T, dRdt);
end
end
But Z ends up being a 1X1 matrix... what did I do wrong?
2 Kommentare
Akzeptierte Antwort
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Spline Postprocessing 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!