blob: 5ce4cffe1a862a4d493452d6bd02e64854aa0610 (
plain)
1
2
3
4
5
6
7
8
|
//Example 1.14<b>
//check the given signL is PERIODIC OR NOT e^(-1+j)*t
clc ;
t=-1:.01:1;
x=(exp(-1+%i)*t);
f=1/2*%pi;
N=1/f;
disp (N,'this shows that the given signal is not periodic');
|