You are on page 1of 1

TEXTO

x= [-4 4 0 0]
y= [4 4 4 -4]
plot(x,y)
ylim([-6 6])
xlim([-6 6])
grid on

x1=[4 0 -4 -4 4 -4 -4 -4 4 ]
y1=[0 0 0 -4 -4 -4 0 4 4 ]
plot(x1,y1)
ylim([-6 6])
xlim([-6 6])
grid on

x7=[0 4 0 -4 -2 2]
y7=[4 -4 4 -4 0 0]
plot(x7,y7)
ylim([-6 6])
xlim([-6 6])
grid on

x8=[4 2 0 -2 -4]
y8=[-4 4 0 4 -4]
plot(x8,y8)
ylim([-6 6])
xlim([-6 6])
grid on

% t= 0:0.001:6.289
% yo=(1./t)
% e=-3*abs(sin(t))
% plot(t,yo)
% plot (e,t)
% % ylim([-6 6])
% % xlim([-6 6])
% grid on

t= 0:0.001:3.15
xc=[0.5 2.62 ]
yu=[1.5 1.48]
e=3*abs(sin(t))
plot (t,e, xc, yu)
grid on

You might also like