Line 24: Line 24:
  
 
just increase the sampling freq or in other words decrease the sampling time
 
just increase the sampling freq or in other words decrease the sampling time
 
+
<pre>
 
F0 =13;
 
F0 =13;
  
Line 36: Line 36:
  
 
plot(t,x)
 
plot(t,x)
 +
</pre>
 +
[[Image:Signal_with_high_fs.jpg‎ _ECE301Fall2008mboutin]]

Latest revision as of 21:59, 11 September 2008

In the code used below the sampling frequency is too low. Hence the time interval between any two samples is very high. This results into skipping of certain values of the signal.

code with bug

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)

File:Signal with low Fs.jpg ECE301Fall2008mboutin


code without bug

just increase the sampling freq or in other words decrease the sampling time

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)

File:Signal with high fs.jpg ECE301Fall2008mboutin

Alumni Liaison

Sees the importance of signal filtering in medical imaging

Dhruv Lamba, BSEE2010