Line 7: Line 7:
 
T0 =1/F0;
 
T0 =1/F0;
  
Ts = 0.07/100; % or equivalently Ts = 0.0007; This is where I made the change.
+
Ts = 0.07/100; % or equivalently Ts = 0.0007;
  
 
t  = 0:Ts:13*T0;
 
t  = 0:Ts:13*T0;

Latest revision as of 09:55, 11 September 2008

The bug is the fact that it isn't sampling enough times to plot a decent graph. The period is is 0.7 and so is the Ts value. So therefore decrease the Ts value such that the function is sampled more times. It is possible to do this by dividing Ts by 100.

The New Code

F0 =13;

T0 =1/F0;

Ts = 0.07/100; % or equivalently Ts = 0.0007;

t = 0:Ts:13*T0;

x = real(exp(j*(2*pi*F0*t-pi/2)));

plot(t,x)


Go back to : Homework 2_ECE301Fall2008mboutin

Alumni Liaison

Have a piece of advice for Purdue students? Share it through Rhea!

Alumni Liaison