<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://fweb.wallawalla.edu/class-wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Baldwin.britton</id>
	<title>Class Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://fweb.wallawalla.edu/class-wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Baldwin.britton"/>
	<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php/Special:Contributions/Baldwin.britton"/>
	<updated>2026-04-05T21:35:20Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.0</generator>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4240</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4240"/>
		<updated>2007-11-27T18:18:28Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is what we get when we sample the signal at 3Hz&lt;br /&gt;
&lt;br /&gt;
[[Image:hw13_1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Taking the original signal &amp;lt;math&amp;gt;sin(2*pi*t)&amp;lt;/math&amp;gt; and applying the DFT we get this graph:&lt;br /&gt;
&lt;br /&gt;
[[Image:Signals-13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now taking the DFT of this sampled signal, we get a graph like this:&lt;br /&gt;
&lt;br /&gt;
[[Image:hw13_2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script for matlab:&lt;br /&gt;
&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
t=0:.01:2;&lt;br /&gt;
&lt;br /&gt;
T=1/3;&lt;br /&gt;
&lt;br /&gt;
ts=0:T:2;&lt;br /&gt;
&lt;br /&gt;
f1=2;&lt;br /&gt;
&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
&lt;br /&gt;
x = sin(2*pi*ts); %this is the function&lt;br /&gt;
&lt;br /&gt;
plot(ts,sin(2*pi*ts),&#039;r-&#039;,t,sin(2*pi*t)); % plot the original signal and the signal sampled at 3Hz&lt;br /&gt;
&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
&lt;br /&gt;
pause (2);&lt;br /&gt;
&lt;br /&gt;
plot (ts,X); %plot the DFT of the signal sampled at 3Hz&lt;br /&gt;
&lt;br /&gt;
pause (4);&lt;br /&gt;
&lt;br /&gt;
x=sin(2*pi*t);&lt;br /&gt;
&lt;br /&gt;
plot(t,x);&lt;br /&gt;
&lt;br /&gt;
pause(2);&lt;br /&gt;
&lt;br /&gt;
X = fft(x);&lt;br /&gt;
&lt;br /&gt;
plot(t,X); %plot the DFT of the original signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4239</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4239"/>
		<updated>2007-11-27T18:18:10Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is what we get when we sample the signal at 3Hz&lt;br /&gt;
[[Image:hw13_1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Taking the original signal &amp;lt;math&amp;gt;sin(2*pi*t)&amp;lt;/math&amp;gt; and applying the DFT we get this graph:&lt;br /&gt;
[[Image:Signals-13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Now taking the DFT of this sampled signal, we get a graph like this:&lt;br /&gt;
[[Image:hw13_2.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script for matlab:&lt;br /&gt;
&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
t=0:.01:2;&lt;br /&gt;
&lt;br /&gt;
T=1/3;&lt;br /&gt;
&lt;br /&gt;
ts=0:T:2;&lt;br /&gt;
&lt;br /&gt;
f1=2;&lt;br /&gt;
&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
&lt;br /&gt;
x = sin(2*pi*ts); %this is the function&lt;br /&gt;
&lt;br /&gt;
plot(ts,sin(2*pi*ts),&#039;r-&#039;,t,sin(2*pi*t)); % plot the original signal and the signal sampled at 3Hz&lt;br /&gt;
&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
&lt;br /&gt;
pause (2);&lt;br /&gt;
&lt;br /&gt;
plot (ts,X); %plot the DFT of the signal sampled at 3Hz&lt;br /&gt;
&lt;br /&gt;
pause (4);&lt;br /&gt;
&lt;br /&gt;
x=sin(2*pi*t);&lt;br /&gt;
&lt;br /&gt;
plot(t,x);&lt;br /&gt;
&lt;br /&gt;
pause(2);&lt;br /&gt;
&lt;br /&gt;
X = fft(x);&lt;br /&gt;
&lt;br /&gt;
plot(t,X); %plot the DFT of the original signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4238</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4238"/>
		<updated>2007-11-27T18:13:56Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This is what we get when we sample the signal at 3Hz&lt;br /&gt;
[[Image:hw13_1.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Taking the original signal &amp;lt;math&amp;gt;sin(2*pi*t)&amp;lt;/math&amp;gt; and applying the DFT we get this graph:&lt;br /&gt;
&lt;br /&gt;
[[Image:Signals-13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script for matlab:&lt;br /&gt;
&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
t=0:.01:2;&lt;br /&gt;
&lt;br /&gt;
T=1/3;&lt;br /&gt;
&lt;br /&gt;
ts=0:T:2;&lt;br /&gt;
&lt;br /&gt;
f1=2;&lt;br /&gt;
&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
&lt;br /&gt;
x = sin(2*pi*ts); %this is the function&lt;br /&gt;
&lt;br /&gt;
plot(ts,sin(2*pi*ts),&#039;r-&#039;,t,sin(2*pi*t)); % plot the original signal and the signal sampled at 3Hz&lt;br /&gt;
&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
&lt;br /&gt;
pause (2);&lt;br /&gt;
&lt;br /&gt;
plot (ts,X); %plot the DFT of the signal sampled at 3Hz&lt;br /&gt;
&lt;br /&gt;
pause (4);&lt;br /&gt;
&lt;br /&gt;
x=sin(2*pi*t);&lt;br /&gt;
&lt;br /&gt;
plot(t,x);&lt;br /&gt;
&lt;br /&gt;
pause(2);&lt;br /&gt;
&lt;br /&gt;
X = fft(x);&lt;br /&gt;
&lt;br /&gt;
plot(t,X); %plot the DFT of the original signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4237</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4237"/>
		<updated>2007-11-27T18:11:11Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;sampling &amp;lt;math&amp;gt;sin(2*pi*t)&amp;lt;/math&amp;gt; and taking the DFT we get this graph:&lt;br /&gt;
&lt;br /&gt;
[[Image:Signals-13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script for matlab:&lt;br /&gt;
&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
t=0:.01:2;&lt;br /&gt;
&lt;br /&gt;
T=1/3;&lt;br /&gt;
&lt;br /&gt;
ts=0:T:2;&lt;br /&gt;
&lt;br /&gt;
f1=2;&lt;br /&gt;
&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
&lt;br /&gt;
x = sin(2*pi*ts); %this is the function&lt;br /&gt;
&lt;br /&gt;
plot(ts,sin(2*pi*ts),&#039;r-&#039;,t,sin(2*pi*t)); % plot the original signal and the signal sampled at 3Hz&lt;br /&gt;
&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
&lt;br /&gt;
pause (2);&lt;br /&gt;
&lt;br /&gt;
plot (ts,X); %plot the DFT of the signal sampled at 3Hz&lt;br /&gt;
&lt;br /&gt;
pause (4);&lt;br /&gt;
&lt;br /&gt;
x=sin(2*pi*t);&lt;br /&gt;
&lt;br /&gt;
plot(t,x);&lt;br /&gt;
&lt;br /&gt;
pause(2);&lt;br /&gt;
&lt;br /&gt;
X = fft(x);&lt;br /&gt;
&lt;br /&gt;
plot(t,X); %plot the DFT of the original signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4236</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4236"/>
		<updated>2007-11-27T18:09:19Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;sampling &amp;lt;math&amp;gt;sin(2*pi*t)&amp;lt;/math&amp;gt; and taking the DFT we get this graph:&lt;br /&gt;
&lt;br /&gt;
[[Image:Signals-13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script for matlab:&lt;br /&gt;
&lt;br /&gt;
clear all;&lt;br /&gt;
t=0:.01:2;&lt;br /&gt;
T=1/3;&lt;br /&gt;
ts=0:T:2;&lt;br /&gt;
f1=2;&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
x = sin(2*pi*ts); %this is the function&lt;br /&gt;
plot(ts,sin(2*pi*ts),&#039;r-&#039;,t,sin(2*pi*t)); % plot the original signal and the signal sampled at 3Hz&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
pause (2);&lt;br /&gt;
plot (ts,X); %plot the DFT of the signal sampled at 3Hz&lt;br /&gt;
pause (4);&lt;br /&gt;
x=sin(2*pi*t);&lt;br /&gt;
plot(t,x);&lt;br /&gt;
pause(2);&lt;br /&gt;
X = fft(x);&lt;br /&gt;
plot(t,X); %plot the DFT of the original signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4204</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4204"/>
		<updated>2007-11-12T18:44:30Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;sampling &amp;lt;math&amp;gt;sin(2*pi*t)&amp;lt;/math&amp;gt; and taking the DFT we get this graph:&lt;br /&gt;
&lt;br /&gt;
[[Image:Signals-13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script for matlab:&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
t=0:.01:1;&lt;br /&gt;
&lt;br /&gt;
T=0.20;&lt;br /&gt;
&lt;br /&gt;
ts=0:T:1;&lt;br /&gt;
&lt;br /&gt;
f1=2;&lt;br /&gt;
&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
&lt;br /&gt;
x = sin(2*pi*3*t); %this is the function&lt;br /&gt;
&lt;br /&gt;
plot(t,x); % plot the original signal&lt;br /&gt;
&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
&lt;br /&gt;
pause (2);&lt;br /&gt;
&lt;br /&gt;
plot (t,X); %plot the DFT of the signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4203</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4203"/>
		<updated>2007-11-12T18:43:52Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;sampling &amp;lt;math&amp;gt;sin(2*pi*t)&amp;lt;/math&amp;gt; and taking the DFT we get this graph:&lt;br /&gt;
[[Image:Signals-13.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script for matlab:&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
t=0:.01:1;&lt;br /&gt;
&lt;br /&gt;
T=0.20;&lt;br /&gt;
&lt;br /&gt;
ts=0:T:1;&lt;br /&gt;
&lt;br /&gt;
f1=2;&lt;br /&gt;
&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
&lt;br /&gt;
x = sin(2*pi*3*t); %this is the function&lt;br /&gt;
&lt;br /&gt;
plot(t,x); % plot the original signal&lt;br /&gt;
&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
&lt;br /&gt;
pause (2);&lt;br /&gt;
&lt;br /&gt;
plot (t,X); %plot the DFT of the signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Signals-13.jpg&amp;diff=4202</id>
		<title>File:Signals-13.jpg</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Signals-13.jpg&amp;diff=4202"/>
		<updated>2007-11-12T18:43:22Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: dft&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;dft&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4201</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4201"/>
		<updated>2007-11-12T18:42:45Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;sampling &amp;lt;math&amp;gt;sin(2*pi*t)&amp;lt;/math&amp;gt; and taking the DFT we get this graph:&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script for matlab:&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
t=0:.01:1;&lt;br /&gt;
&lt;br /&gt;
T=0.20;&lt;br /&gt;
&lt;br /&gt;
ts=0:T:1;&lt;br /&gt;
&lt;br /&gt;
f1=2;&lt;br /&gt;
&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
&lt;br /&gt;
x = sin(2*pi*3*t); %this is the function&lt;br /&gt;
&lt;br /&gt;
plot(t,x); % plot the original signal&lt;br /&gt;
&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
&lt;br /&gt;
pause (2);&lt;br /&gt;
&lt;br /&gt;
plot (t,X); %plot the DFT of the signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4200</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4200"/>
		<updated>2007-11-12T18:42:24Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;sampling &amp;lt;math&amp;gt;sin(2*pi*t)&amp;lt;/math&amp;gt; and taking the DFT we get this graf:&lt;br /&gt;
&lt;br /&gt;
Script for matlab:&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
t=0:.01:1;&lt;br /&gt;
&lt;br /&gt;
T=0.20;&lt;br /&gt;
&lt;br /&gt;
ts=0:T:1;&lt;br /&gt;
&lt;br /&gt;
f1=2;&lt;br /&gt;
&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
&lt;br /&gt;
x = sin(2*pi*3*t); %this is the function&lt;br /&gt;
&lt;br /&gt;
plot(t,x); % plot the original signal&lt;br /&gt;
&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
&lt;br /&gt;
pause (2);&lt;br /&gt;
&lt;br /&gt;
plot (t,X); %plot the DFT of the signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4199</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4199"/>
		<updated>2007-11-12T18:40:35Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Script for matlab:&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
t=0:.01:1;&lt;br /&gt;
&lt;br /&gt;
T=0.20;&lt;br /&gt;
&lt;br /&gt;
ts=0:T:1;&lt;br /&gt;
&lt;br /&gt;
f1=2;&lt;br /&gt;
&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
&lt;br /&gt;
x = sin(2*pi*3*t); %this is the function&lt;br /&gt;
&lt;br /&gt;
plot(t,x); % plot the original signal&lt;br /&gt;
&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
&lt;br /&gt;
pause (2);&lt;br /&gt;
&lt;br /&gt;
plot (t,X); %plot the DFT of the signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4198</id>
		<title>Using the DFT</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Using_the_DFT&amp;diff=4198"/>
		<updated>2007-11-12T18:38:36Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: New page: Script for matlab: clear all; t=0:.01:1; T=0.20; ts=0:T:1; f1=2; f2=1/0.125; x = sin(2*pi*3*t); %this is the function plot(t,x); % plot the original signal X = fft(x); % take the DFT pause...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Script for matlab:&lt;br /&gt;
clear all;&lt;br /&gt;
t=0:.01:1;&lt;br /&gt;
T=0.20;&lt;br /&gt;
ts=0:T:1;&lt;br /&gt;
f1=2;&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
x = sin(2*pi*3*t); %this is the function&lt;br /&gt;
plot(t,x); % plot the original signal&lt;br /&gt;
X = fft(x); % take the DFT&lt;br /&gt;
pause (2);&lt;br /&gt;
plot (t,X); %plot the DFT of the signal&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=More_about_Sampling&amp;diff=4197</id>
		<title>More about Sampling</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=More_about_Sampling&amp;diff=4197"/>
		<updated>2007-11-12T18:37:50Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: /* Aliasing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Aliasing===&lt;br /&gt;
&lt;br /&gt;
Aliasing is when different continuous signals become indistinguishable when sampled, this might happen when sampling too slow. It can also refer to the distortion that occurs when a signals are sampled and reconstructed as aliases of the original signals.&lt;br /&gt;
&lt;br /&gt;
Here is an example of aliasing:&lt;br /&gt;
&lt;br /&gt;
[[Image:Signals 2hw-11.jpg]]&lt;br /&gt;
[[Image:Signals hw-11.jpg]]&lt;br /&gt;
&lt;br /&gt;
Like we can see in this images, the samples that we are getting out of the yellow wave, can be also samples in the blue one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script for Matlab:&lt;br /&gt;
clear all;&lt;br /&gt;
&lt;br /&gt;
t=0:.01:1;&lt;br /&gt;
&lt;br /&gt;
T=0.20;&lt;br /&gt;
&lt;br /&gt;
ts=0:T:1;&lt;br /&gt;
&lt;br /&gt;
f1=2;&lt;br /&gt;
&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
&lt;br /&gt;
plot(t,cos(2*pi*f2*t),&#039;b-&#039;,ts,cos(2*pi*f1*ts),&#039;r*&#039;,t,cos(2*pi*f1*t),&#039;y-&#039;);&lt;br /&gt;
&lt;br /&gt;
plot(ts,cos(2*pi*f1*ts),&#039;r*&#039;,t,cos(2*pi*f1*t),&#039;y-&#039;);&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=More_about_Sampling&amp;diff=4196</id>
		<title>More about Sampling</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=More_about_Sampling&amp;diff=4196"/>
		<updated>2007-11-12T18:37:29Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: /* Aliasing */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Aliasing===&lt;br /&gt;
&lt;br /&gt;
Aliasing is when different continuous signals become indistinguishable when sampled, this might happen when sampling too slow. It can also refer to the distortion that occurs when a signals are sampled and reconstructed as aliases of the original signals.&lt;br /&gt;
&lt;br /&gt;
Here is an example of aliasing:&lt;br /&gt;
&lt;br /&gt;
[[Image:Signals 2hw-11.jpg]]&lt;br /&gt;
[[Image:Signals hw-11.jpg]]&lt;br /&gt;
&lt;br /&gt;
Like we can see in this images, the samples that we are getting out of the yellow wave, can be also samples in the blue one.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Script for Matlab:&lt;br /&gt;
clear all;&lt;br /&gt;
t=0:.01:1;&lt;br /&gt;
T=0.20;&lt;br /&gt;
ts=0:T:1;&lt;br /&gt;
f1=2;&lt;br /&gt;
f2=1/0.125;&lt;br /&gt;
plot(t,cos(2*pi*f2*t),&#039;b-&#039;,ts,cos(2*pi*f1*ts),&#039;r*&#039;,t,cos(2*pi*f1*t),&#039;y-&#039;);&lt;br /&gt;
plot(ts,cos(2*pi*f1*ts),&#039;r*&#039;,t,cos(2*pi*f1*t),&#039;y-&#039;);&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=4195</id>
		<title>User:Baldwin.britton</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=4195"/>
		<updated>2007-11-12T18:36:03Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: /* Homework #11 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Background:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I&#039;m was born in Chile, my parents are Colombian, and I grew up in Honduras.&lt;br /&gt;
&lt;br /&gt;
-Getting a degree in Electrical Engineering&lt;br /&gt;
&lt;br /&gt;
==Homework #4==&lt;br /&gt;
 - [[The Fourier Transforms|Fourier Transforms]]&lt;br /&gt;
&lt;br /&gt;
==Homework #8==&lt;br /&gt;
 - [[A little about Sampling]]&lt;br /&gt;
&lt;br /&gt;
==Homework #11==&lt;br /&gt;
 - [[More about Sampling]]&lt;br /&gt;
&lt;br /&gt;
==Homework #12==&lt;br /&gt;
 - [[Relating the DFT to the Fourier transform]]&lt;br /&gt;
&lt;br /&gt;
==Homework #13==&lt;br /&gt;
 - [[Using the DFT]]&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=4194</id>
		<title>User:Baldwin.britton</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=4194"/>
		<updated>2007-11-12T18:34:36Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Background:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I&#039;m was born in Chile, my parents are Colombian, and I grew up in Honduras.&lt;br /&gt;
&lt;br /&gt;
-Getting a degree in Electrical Engineering&lt;br /&gt;
&lt;br /&gt;
==Homework #4==&lt;br /&gt;
 - [[The Fourier Transforms|Fourier Transforms]]&lt;br /&gt;
&lt;br /&gt;
==Homework #8==&lt;br /&gt;
 - [[A little about Sampling]]&lt;br /&gt;
&lt;br /&gt;
==Homework #11==&lt;br /&gt;
 - [[More about Sampling]]&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=4193</id>
		<title>User:Baldwin.britton</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=4193"/>
		<updated>2007-11-12T18:34:24Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Background:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I&#039;m was born in Chile, my parents are Colombian, and I grew up in Honduras.&lt;br /&gt;
-Getting a degree in Electrical Engineering&lt;br /&gt;
&lt;br /&gt;
==Homework #4==&lt;br /&gt;
 - [[The Fourier Transforms|Fourier Transforms]]&lt;br /&gt;
&lt;br /&gt;
==Homework #8==&lt;br /&gt;
 - [[A little about Sampling]]&lt;br /&gt;
&lt;br /&gt;
==Homework #11==&lt;br /&gt;
 - [[More about Sampling]]&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=More_about_Sampling&amp;diff=4156</id>
		<title>More about Sampling</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=More_about_Sampling&amp;diff=4156"/>
		<updated>2007-11-05T00:30:43Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Aliasing===&lt;br /&gt;
&lt;br /&gt;
Aliasing is when different continuous signals become indistinguishable when sampled, this might happen when sampling too slow. It can also refer to the distortion that occurs when a signals are sampled and reconstructed as aliases of the original signals.&lt;br /&gt;
&lt;br /&gt;
Here is an example of aliasing:&lt;br /&gt;
&lt;br /&gt;
[[Image:Signals 2hw-11.jpg]]&lt;br /&gt;
[[Image:Signals hw-11.jpg]]&lt;br /&gt;
&lt;br /&gt;
Like we can see in this images, the samples that we are getting out of the yellow wave, can be also samples in the blue one.&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Signals_hw-11.jpg&amp;diff=4155</id>
		<title>File:Signals hw-11.jpg</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Signals_hw-11.jpg&amp;diff=4155"/>
		<updated>2007-11-05T00:10:15Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: aliasing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;aliasing&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Signals_2hw-11.jpg&amp;diff=4154</id>
		<title>File:Signals 2hw-11.jpg</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=File:Signals_2hw-11.jpg&amp;diff=4154"/>
		<updated>2007-11-05T00:08:40Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: aliasing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;aliasing&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=2815</id>
		<title>User:Baldwin.britton</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=2815"/>
		<updated>2007-09-26T07:31:50Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Background:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
I&#039;m was born in Chile, my Colombian parents, and I grew up in Honduras.&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=2744</id>
		<title>User:Baldwin.britton</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=2744"/>
		<updated>2007-09-26T07:31:22Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: /* Headline text */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Background:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Background:&#039;&#039;&#039;&lt;br /&gt;
I&#039;m was born in Chile, my Colombian parents, and I grew up in Honduras.&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=2743</id>
		<title>User:Baldwin.britton</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=2743"/>
		<updated>2007-09-26T07:30:36Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Background:&#039;&#039;&#039;&lt;br /&gt;
== Headline text ==&lt;br /&gt;
&lt;br /&gt;
I&#039;m was born in Chile, my Colombian parents, and I grew up in Honduras.&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=2742</id>
		<title>User:Baldwin.britton</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=User:Baldwin.britton&amp;diff=2742"/>
		<updated>2007-09-26T07:30:19Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Background:&lt;br /&gt;
I&#039;m was born in Chile, my Colombian parents, and I grew up in Honduras.&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Signals_and_Systems&amp;diff=2774</id>
		<title>Signals and Systems</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Signals_and_Systems&amp;diff=2774"/>
		<updated>2007-09-26T07:27:20Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: /* 2007-2008 contributors */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Topics ==&lt;br /&gt;
[[Fourier series - by Ray Betz|Overview of Signals and Systems]]&lt;br /&gt;
&lt;br /&gt;
===Individual Subjects===&lt;br /&gt;
*[[Linear Time Invarient System|Linear Time Invarient Systems]]&lt;br /&gt;
**[[The Game|&amp;quot;The Game&amp;quot;]]&lt;br /&gt;
*[[Orthogonal functions|Orthogonal Functions]]&lt;br /&gt;
*[[Energy in a signal|Finding the Energy in a Signal]]&lt;br /&gt;
**[[Rayleigh&#039;s Theorem]]&lt;br /&gt;
*[[Fourier series|Fourier Series]]&lt;br /&gt;
*[[Fourier transform|Fourier Transforms]]&lt;br /&gt;
**[[Discrete Fourier transform]]&lt;br /&gt;
*[[Sampling]]&lt;br /&gt;
*[[FIR Filter Example]]&lt;br /&gt;
&lt;br /&gt;
===Course Pages===&lt;br /&gt;
[[2005-2006 Assignments]]&lt;br /&gt;
&lt;br /&gt;
[[2006-2007 Assignments]]&lt;br /&gt;
&lt;br /&gt;
[http://www.wwc.edu/~frohro/ClassNotes/engr455index.htm Class notes for Signals &amp;amp; Systems]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Frohro|Instructor: Rob Frohne]]&lt;br /&gt;
&lt;br /&gt;
==2004-2005 contributors==&lt;br /&gt;
&lt;br /&gt;
[[User:Barnsa|Sam Barnes]]&lt;br /&gt;
&lt;br /&gt;
[[User:Santsh|Shawn Santana]]&lt;br /&gt;
&lt;br /&gt;
[[User:Goeari|Aric Goe]]&lt;br /&gt;
&lt;br /&gt;
[[User:Caswto|Todd Caswell]]&lt;br /&gt;
&lt;br /&gt;
[[User:Andeda|David Anderson]]&lt;br /&gt;
&lt;br /&gt;
[[User:Guenan|Anthony Guenterberg]]&lt;br /&gt;
&lt;br /&gt;
==2005-2006 contributors==&lt;br /&gt;
&lt;br /&gt;
[[User:GabrielaV|Gabriela Valdivia]]&lt;br /&gt;
&lt;br /&gt;
[[User:SDiver|Raymond Betz]]&lt;br /&gt;
&lt;br /&gt;
[[User:chrijen|Jenni Christensen]]&lt;br /&gt;
&lt;br /&gt;
[[User:wonoje|Jeffrey Wonoprabowo]]&lt;br /&gt;
&lt;br /&gt;
[[User:wilspa|Paul Wilson]]&lt;br /&gt;
&lt;br /&gt;
==2006-2007 contributors==&lt;br /&gt;
&lt;br /&gt;
[[User:Smitry|Ryan J Smith]]&lt;br /&gt;
&lt;br /&gt;
[[User:Nathan|Nathan Ferch]]&lt;br /&gt;
&lt;br /&gt;
[[User:Andrew|Andrew Lopez]]&lt;br /&gt;
&lt;br /&gt;
[[User:Sherna|Nathan Sherman]]&lt;br /&gt;
&lt;br /&gt;
[[User:Adkich|Chris Adkins]]&lt;br /&gt;
&lt;br /&gt;
==2007-2008 contributors==&lt;br /&gt;
&lt;br /&gt;
[[User:Fonggr|Greg Fong]]&lt;br /&gt;
&lt;br /&gt;
[[User:Pridma|Mark Priddy]]&lt;br /&gt;
&lt;br /&gt;
[[User:Harrde|Denver Harris]]&lt;br /&gt;
&lt;br /&gt;
[[User:baldwin.britton|Baldwin Britton]]&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
	<entry>
		<id>https://fweb.wallawalla.edu/class-wiki/index.php?title=Signals_and_Systems&amp;diff=2741</id>
		<title>Signals and Systems</title>
		<link rel="alternate" type="text/html" href="https://fweb.wallawalla.edu/class-wiki/index.php?title=Signals_and_Systems&amp;diff=2741"/>
		<updated>2007-09-26T07:27:01Z</updated>

		<summary type="html">&lt;p&gt;Baldwin.britton: /* 2007-2008 contributors */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Topics ==&lt;br /&gt;
[[Fourier series - by Ray Betz|Overview of Signals and Systems]]&lt;br /&gt;
&lt;br /&gt;
===Individual Subjects===&lt;br /&gt;
*[[Linear Time Invarient System|Linear Time Invarient Systems]]&lt;br /&gt;
**[[The Game|&amp;quot;The Game&amp;quot;]]&lt;br /&gt;
*[[Orthogonal functions|Orthogonal Functions]]&lt;br /&gt;
*[[Energy in a signal|Finding the Energy in a Signal]]&lt;br /&gt;
**[[Rayleigh&#039;s Theorem]]&lt;br /&gt;
*[[Fourier series|Fourier Series]]&lt;br /&gt;
*[[Fourier transform|Fourier Transforms]]&lt;br /&gt;
**[[Discrete Fourier transform]]&lt;br /&gt;
*[[Sampling]]&lt;br /&gt;
*[[FIR Filter Example]]&lt;br /&gt;
&lt;br /&gt;
===Course Pages===&lt;br /&gt;
[[2005-2006 Assignments]]&lt;br /&gt;
&lt;br /&gt;
[[2006-2007 Assignments]]&lt;br /&gt;
&lt;br /&gt;
[http://www.wwc.edu/~frohro/ClassNotes/engr455index.htm Class notes for Signals &amp;amp; Systems]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:Frohro|Instructor: Rob Frohne]]&lt;br /&gt;
&lt;br /&gt;
==2004-2005 contributors==&lt;br /&gt;
&lt;br /&gt;
[[User:Barnsa|Sam Barnes]]&lt;br /&gt;
&lt;br /&gt;
[[User:Santsh|Shawn Santana]]&lt;br /&gt;
&lt;br /&gt;
[[User:Goeari|Aric Goe]]&lt;br /&gt;
&lt;br /&gt;
[[User:Caswto|Todd Caswell]]&lt;br /&gt;
&lt;br /&gt;
[[User:Andeda|David Anderson]]&lt;br /&gt;
&lt;br /&gt;
[[User:Guenan|Anthony Guenterberg]]&lt;br /&gt;
&lt;br /&gt;
==2005-2006 contributors==&lt;br /&gt;
&lt;br /&gt;
[[User:GabrielaV|Gabriela Valdivia]]&lt;br /&gt;
&lt;br /&gt;
[[User:SDiver|Raymond Betz]]&lt;br /&gt;
&lt;br /&gt;
[[User:chrijen|Jenni Christensen]]&lt;br /&gt;
&lt;br /&gt;
[[User:wonoje|Jeffrey Wonoprabowo]]&lt;br /&gt;
&lt;br /&gt;
[[User:wilspa|Paul Wilson]]&lt;br /&gt;
&lt;br /&gt;
==2006-2007 contributors==&lt;br /&gt;
&lt;br /&gt;
[[User:Smitry|Ryan J Smith]]&lt;br /&gt;
&lt;br /&gt;
[[User:Nathan|Nathan Ferch]]&lt;br /&gt;
&lt;br /&gt;
[[User:Andrew|Andrew Lopez]]&lt;br /&gt;
&lt;br /&gt;
[[User:Sherna|Nathan Sherman]]&lt;br /&gt;
&lt;br /&gt;
[[User:Adkich|Chris Adkins]]&lt;br /&gt;
&lt;br /&gt;
==2007-2008 contributors==&lt;br /&gt;
&lt;br /&gt;
[[User:Fonggr|Greg Fong]]&lt;br /&gt;
&lt;br /&gt;
[[User:Pridma|Mark Priddy]]&lt;br /&gt;
&lt;br /&gt;
[[User:Harrde|Denver Harris]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[User:baldwin.britton|Baldwin Britton]]&lt;/div&gt;</summary>
		<author><name>Baldwin.britton</name></author>
	</entry>
</feed>