blob: 2449ba8ff0f33bac13452a0d8a50cac9aca904be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//ex_6.5.b even and odd signals of x(n)
clear;
clc;
close;
n= 0:0.01:5;
x=2*exp(%i*((%pi)/3)*n);
figure
a=gca();
xtitle('x(n)')
plot2d(n,x)
figure
a=gca();
xtitle('even signal')
plot2d(n,x/2)
t1=-5:1/100:0;
plot2d(t1,x($:-1:1)/2)
a.y_location='origin'
figure
a=gca();
xtitle('odd signal')
plot2d(n,x/2)
t1=-5:1/100:0;
plot2d(t1,-x($:-1:1)/2)
a.y_location='origin'
a.x_location='origin'
|