?? even_odd_c.m
字號(hào):
% Name: Even_Odd_c.m
clear,close all,
t=-3:0.01:3;
x=input('Type in the continuous-time siganl x(t)=');%(t+2).*(u(t+2)-u(t))-(t-2).*(u(t)-u(t-2));
xe=(x+fliplr(x))/2;%(t+4).*(u(t+4)-u(t+2))-t.*(u(t+2)-u(t))-t.*(u(t)-u(t-2))+(t-4).*(u(t-2)-u(t-4));
xo=(x-fliplr(x))/2;%(n+4).*(u(n+4)-u(n))-(n-4).*(u(n)-u(n-4));
subplot(311)
plot(t,x,'r')
title('The original signal x(t)')
xlabel('Time t')
grid on
subplot(312)
plot(t,xe,'r')
title('The even part')
xlabel('Time t')
grid on
subplot(313)
plot(t,xo,'r')
title('The odd part')
xlabel('Time t')
grid on
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -