blob: dffdf48ae6cb9d3f78308643e626db0f1c923d28 (
plain)
1
2
3
4
5
6
7
|
//Example 1.31<d>
//check the given signL is PERIODIC OR NOT e^(-2*t)*u(t)
clc ;
t=-1:.01:1;
x=exp(-2*t);
plot (t,x);
disp ('(a)this shows that the given signal is not periodic which gives w0=1+j,complex no. the frequency of signal can never be complex it must have real value');
|