Facebook
From asdas, 4 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 236
  1. clc
  2. clear all
  3. close(gcf);
  4. disp('Wykreślanie krzywej w przestrzenie 3D');
  5. t=[0:0.001:8*pi];
  6. x=5*exp(-t/10).*sin(t);
  7. y=5*exp(-t/10).*cos(t);
  8. z=t/5;
  9. plot3(x,y,z,'.g')
  10. grind on
  11.