Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

CIRCLE

 clc
 clear all

]
clc
clear all
x=0:0.1:2*pi;
subplot(2,2,1)
plot(x,tan(x),'r')
subplot(2,2,2)
plot(x,cos(7*x),'k')
subplot(2,2,3)
plot(x,x.^5+7,'m')

You might also like