(New page: %Periodic signal t = 0:0.001:20; x = sin(t); plot(t,x) image: periodic.jpg %Periodic signal turned non-periodic by setting the sampling period to 0.1 F0 =13; T0 =1/F0; Ts = 0.1; ...) |
|||
Line 4: | Line 4: | ||
plot(t,x) | plot(t,x) | ||
− | [[image: | + | [[image: cdperiodic.jpg]] |
%Periodic signal turned non-periodic by setting the sampling period to 0.1 | %Periodic signal turned non-periodic by setting the sampling period to 0.1 | ||
Line 14: | Line 14: | ||
plot(t,x) | plot(t,x) | ||
− | [[image: | + | [[image: cdnonperiodic.jpg]] |
Revision as of 14:09, 11 September 2008
%Periodic signal t = 0:0.001:20; x = sin(t); plot(t,x)
%Periodic signal turned non-periodic by setting the sampling period to 0.1 F0 =13; T0 =1/F0; Ts = 0.1; t = 0:Ts:13*T0; x = sin(2*pi*F0*t); plot(t,x)