?? 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 + -