clc clear all close(gcf); disp('Wykreślanie krzywej w przestrzenie 3D'); t=[0:0.001:8*pi]; x=5*exp(-t/10).*sin(t); y=5*exp(-t/10).*cos(t); z=t/5; plot3(x,y,z,'.g') grind on