% Kathleen Williams % Ece 202 Exam ML1T2 % November 13th, 2000 % Definition of variables a2 = 9; a3 = 18; C = 105; w = 18; Xo = -2; Yo = -10; Tend = 3.333 % This is in seconds v = dsolve('D2v + 9*Dv + 18*v = 105*sin(18*t)','v(0)=-2','Dv(0)=-10'); pretty(v) ezplot(v,0,Tend)