% Beispielskript zum Plotten einer dreidimensionalen Kurve
t = 0:pi/100:2*pi;
x = cos(t);
y = sin(t);
z = cos(5*t);
plot3(x,y,z,'r')
grid on