blob: e8ab7c5e9e5cffeb32119606022cc942df08a2f6 (
plain)
1
2
3
4
5
6
7
|
//example 2.1.c
//check the signal is periodic or not
clc ;
t =-15:0.01:15;
y =exp(-(2*%i*%pi*t)/7);
plot(t,y);
disp ( 'Plot shows that given signal is periodic with periodicity=7' ) ;
|