• Remix
  • Share
  • New Entry

on 7 Oct 2021
  • 9
  • 132
  • 0
  • 0
  • 267
x1=0:0.01:1;y1=0.01./x1 ;
th=0:0.01:2*pi;
x2=cos(th);y2=sin(th);
x3=-1:0.01:1;y3=abs(-x3);
y4=th/2/pi;x4=-abs(sin(2*pi*y4));
subplot(141);plot(x1,y1,'LineWidth',4)
subplot(142);plot(x2,y2,'LineWidth',4)
subplot(143);plot(x3,y3,'LineWidth',4)
subplot(144);plot(x4,y4,'LineWidth',4)
Remix Tree