Revision as of 09:55, 11 September 2008 by Eblount (Talk)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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

To all math majors: "Mathematics is a wonderfully rich subject."

Dr. Paul Garrett