blob: 227f6fc2ee272cefc54127a06dfe74412ce94aaf (
plain)
1
2
3
4
5
6
7
|
//Example 1.15e
//Check whether the given signal is periodic or not
clc;
t=-20:0.01:20;
y=sin(t)+cos(sqrt(3)*t);
plot(t,y);
disp('Plot shows that the given signal is NOT periodic');
|