Revision as of 10:59, 12 September 2008 by Bchanyas (Talk)

Part 2

I choose the function of $ e^t $ from the one posted under Hw 1.4 David Hartmann. I use period of 10 to create this signal to be a periodic one. The plot is shown below:

Hea ECE301Fall2008mboutin.jpg

Note: The code used to make this plot is a modified version of Ben Horst's.

delta = .0001;
period = 10;
repetitions = 5;

t = [delta:delta:period];
a = t;
c = [];
for i=1:repetitions
   c = [c,a];
end
t = [delta:delta:period*repetitions];
plot(t,c)

Alumni Liaison

ECE462 Survivor

Seraj Dosenbach