• Remix
  • Share
  • New Entry

on 3 Oct 2022
  • 5
  • 77
  • 0
  • 0
  • 262
z=(0:0.4:10)';
n=26;
a=cos(z);
f=sin(z);
b=cos(z+pi);
g=sin(z+pi);
c=zeros(n,1);
d=[a c]';
e=[b c]';
h=[f c]';
i=[g c]';
hold
Current plot held
plot3(d,h,[z z],e,i,[z z],'linewidth',3)
text(c(1:2:n),c(1:2:n),z(1:2:n),'a t')
text(c(2:2:n),c(2:2:n),z(2:2:n),'c g')
plot3(a,f,z,b,g,z,'linewidth',10)
view(25,4)

Image

Remix Tree