Revision as of 15:55, 12 September 2008 by Lee251 (Talk)

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

FIND THE BUG

%%%BEFORE THE CODE WAS FIXED%%%
F0=13;
T0=1/F0;
Ts=0.07;
t=0:Ts:13*T0;
x=real(exp(j*(2*pi*F0*t-pi/2)));
plot(t,x)
%%%%AFTER FIXED%%%%%
hold on
F0=13;
T0=1/F0;
Ts=0.07;
t=0:Ts/13:T0*13;
x=real(exp(j*(2*pi*F0*t-pi/2)));
plot(t,x)

It looked like that the sampling points were not enough. It sampled at few points and generated different looking graph in MATLAB

Bug ECE301Fall2008mboutin.jpg

Alumni Liaison

Abstract algebra continues the conceptual developments of linear algebra, on an even grander scale.

Dr. Paul Garrett