Revision as of 17:55, 3 September 2008 by Li186 (Talk)

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

Problem

The problem of the program is that the Ts value is too big. T0=1/F0=0.76, and Ts=0.7 is almost a whole period. So The step of the approximation is too big.


Fix

decrease the value of Ts.


Matlab Code

f0=13;
t0=1/f0;
ts=0.07/100;
t=0:ts:13*t0;
x=real(exp(j*(2*pi*f0*t-pi/2)));
plot(t,x);

Alumni Liaison

Ph.D. 2007, working on developing cool imaging technologies for digital cameras, camera phones, and video surveillance cameras.

Buyue Zhang