blob: c5c7892ba25b00d91b5016314aa66e7cca800ae8 (
plain)
1
2
3
4
5
6
7
8
|
//Example 1.15<a>
// Find wheather the following signal is periodic or not x3(n)=2*e^(%i*(t+%pi/4))
clc;
t=-21:21;
x=2*exp(%i*(t+%pi/4));
f=1/(2*%pi);
N=1/f;
disp('samples',N,'(b)the given signal is not periodic');
|