blob: d2a69a52225b4b4e74b65e8023ff4c17af5df287 (
plain)
1
2
3
4
5
6
7
8
9
|
//example 6_4_B
//check the signal is periodic or not
clc ;
n=-15:0.01:15;
y =cos((n/8)-(%pi));
xlabel('n')
ylabel('x(n)')
plot(n,y);
disp ( 'Plot shows that given signal is NOT periodic ' ) ;
|