%NRC: 2219 %elvis Bustamante %taller 1-3 %ejercicio MRCV: All T

You might also like

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

%NRC: 2219

%Elvis Bustamante
%Taller 1-3
%Ejercicio MRCV

clear all
clc
syms t
wo=25;
af=9;
r=3;
th=wo*t+((af*t^2)/2);
x=r*cos(th);
y=r*sin(th);
subplot(3,3,1);
ezplot(x,[0,10]);
subplot(3,3,2);
ezplot(y,[0,10]);
subplot(3,3,3);
ezplot(x,y,[0,20]);
subplot(3,3,4);
ezplot(diff(x),[0,10]);
subplot(3,3,5);
ezplot(diff(y),[0,10]);
subplot(3,3,6);
ezplot(diff(x),diff(y));
subplot(3,3,7);
ezplot(diff(x,2),[0,10]);
subplot(3,3,8);
ezplot(diff(y,2),[0,10]);
%Graficas

You might also like