📄 lisanfuzhishuxinhao.m
字号:
A=1;
w=pi/3;
theta=0.1;
angle=theta+j*w;
n1=-10;
n2=10;
n=n1:n2;
x=A*exp(angle*n);
x_real=real(x);
x_imag=imag(x);
x_magnitude=abs(x);
% x_phase=(180/pi)*angle(x);
subplot(221),stem(n,x_real);grid on
subplot(222),stem(n,x_imag);grid on
subplot(223),stem(n,x_magnitude);grid on
% subplot(224),stem(n,x_phase);grid on
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -