• Remix
  • Share
  • New Entry

on 6 Oct 2021
  • 6
  • 21
  • 0
  • 0
  • 273
t = 0:pi/500:100*pi;
xt = (3 + cos(sqrt(32)*t)).*cos(t);
yt = sin(sqrt(32)*t);
zt = (3 + cos(sqrt(32)*t)).*sin(t);
plot3(xt,yt,zt)
hold
Current plot held
xt1 =xt+6;
zt1 =zt+3;
plot3(xt1,yt,zt)
xt1 = (3 + cos(sqrt(32)*t))+6 ;
plot3(xt1,yt,zt)
xt1 = 3+cos(sqrt(32)*t);
plot3(-xt1,yt,zt)
axis off
axis equal
view(0,0)
Remix Tree