blob: 713db8ea14a5d799c47efbe2d266eacde6c60838 (
plain)
1
2
3
4
5
6
7
|
//example 2.2.b
//check the signal is periodic or not
clc ;
t =-15:0.01:15;
y =(2*cos(3*t))+(3*sin(7*t))
plot(t,y);
disp ( 'Plot shows that given signal is periodic with periodicity=2%pi' ) ;
|