Ich versuche, diese Spirale mit Matlab/Oktave animieren ich es will Spirale nach oben oder untenbelebtes Grundstück/Bahn in Matlab/Oktave
t = 0:0.1:10*pi;
r = linspace (0, 1, numel (t));
z = linspace (0, 1, numel (t));
plot3 (r.*sin(t), r.*cos(t), z);
Ich habe versucht, ein mit for-Schleife animieren, aber das gibt mir nur eine Kegelform siehe Code und Bild unter
clear all, clc,clf,tic
t = 0:0.1:10*pi;
r = linspace (0, 1, numel (t));
z = linspace (0, 1, numel (t));
for ii=1:length(r)
ii
plot3 (r.*sin(t(ii)), r.*cos(t(ii)), z);
hold on
%pause (.00001)
end
Bild
Überprüfen Sie diese Antwort: http://stackoverflow.com/questions/16426378/how-to-animate-this-3d-plot-in-matlab/16426623#16426623 –