📄 gen_zero.m
字号:
% Chapter 7 Matlab Figure on
% A general Zero Constellation
%
subplot(1,1,1)
r = 0.6; theta = 50*pi/180;
z1 = r*exp(j*theta); % an arbitrary zero location
z2 = 1/z1; % a linear-phase zero location
z3 = conj(z1); % a conjugate zero location
z4 = 1/z3; % a linear-phase conjugate zero location
b = poly([z1,z2,z3,z4]);
zplane(b,1)
text(real(z1)-0.1,imag(z1)+0.15,'z1')
text(real(z3)-0.2,imag(z3)-0.15,'conj(z1)')
text(real(z2)-0.1,imag(z2)+0.15,'1/z1')
text(real(z4)-0.2,imag(z4)-0.15,'1/conj(z1)')
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -