(New page: <pre> % Periodic Signal with frequency 1 Hz. t=[0:0.001:40]; y=sin(t); plot(t,y); % Sampling Frequency 0.25 Hz t=[0:4:40]; y2 = sin(t); figure plot(t,y2); </pre>)
(No difference)

Revision as of 16:38, 9 September 2008

% Periodic Signal with frequency 1 Hz.
t=[0:0.001:40];
y=sin(t);
plot(t,y);

% Sampling Frequency 0.25 Hz
t=[0:4:40];
y2 = sin(t);
figure
plot(t,y2);

Alumni Liaison

To all math majors: "Mathematics is a wonderfully rich subject."

Dr. Paul Garrett