Revision as of 09:32, 11 September 2008 by Phscheff (Talk)

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

Periodic Signals

The signal x(t)=sin(t) was chosen:

Sampling at a frequency of 1 yields a non periodic signal:

Sampling at a frequency of .125*pi yields a periodic signal:

Taking a non periodic signal x(t)=log(t)and making it periodic can be done by taking a portion of the signal and repeating it over and over.

clc
clear

t=.01:.01:1;
x=log(t);
i=[];
for d=1:10
    i=[i,x];
end

t=[.01:.01:10];
plot(t,i)
grid on

Alumni Liaison

Basic linear algebra uncovers and clarifies very important geometry and algebra.

Dr. Paul Garrett