(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
[[Image:hea_ECE301Fall2008mboutin.jpg]]  
 
[[Image:hea_ECE301Fall2008mboutin.jpg]]  
  
Note: The code used to make this plot is a modified version of Ben Horst's.
+
Note: Help on completing this task is mainly due to the code from Ben Horst.
 
+
<pre>
+
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)
+
</pre>
+

Latest revision as of 11:05, 12 September 2008

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: Help on completing this task is mainly due to the code from Ben Horst.

Alumni Liaison

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

Buyue Zhang