3. Exemplo Angulo de Fase

# Exerc_1.80

clear

for i=1:201

          t(i) = (i-1)*30/200;

           x1(i) = 3 * sin(t(i));

           x2(i) = 3 * sin(t(i)+pi/2);

endfor

plot(t,x1);

hold on

plot(t,x2);