I LOVE Matlab

KSSV
on 4 Oct 2021
- 86
- 422
- 3
- 0
- 254
x1=0:0.01:1;y1=1./x1 ;
th=0:0.01:2*pi;
x2=3*cos(th);y2=3*sin(th);
x3=-1:0.01:1;y3=abs(-2*x3);
y4=th;x4=-3*abs(sin(y4));
subplot(141);plot(x1,y1);axis square
subplot(142);plot(x2,y2);axis square
subplot(143);plot(x3,y3);axis square
subplot(144);plot(x4,y4);axis square