function [h1, h2, h3]=pzplot(z,p,ax);
%PZPLOT Z-plane zero-pole plot.
% PZPLOT(Z,P) plots the zeros Z and poles P (in column vectors) with the
% unit circle for reference. Each zero is represented with a 'o' and
% each pole with a 'x' on the plot. Multiple zeros and poles are
% indicated by the multiplicity number shown to the upper right of the
% zero or pole. PZPLOT(Z,P) where Z and/or P is a matrix plots the zeros
% or poles in different columns with different colors.
%
% PZPLOT(B,A) where B and A are row vectors containing transfer function
% polynomial coefficients plots the poles and zeros of B(z)/A(z). Note
% that if B and A are both scalars they will be interpreted as Z and P.
%
% [H1,H2,H3]=PZPLOT(Z,P) returns vectors of handles to the lines and
% text objects generated. H1 is a vector of handles to the zeros lines,
% H2 is a vector of handles to the poles lines, and H3 is a vector of
% handles to the axes / unit circle line and to text objects which are
% present when there are multiple zeros or poles. In case there are no
% zeros or no poles, H1 or H2 is set to the empty matrix [].
%
% PZPLOT(Z,P,AX) puts the plot into axes AX.
%
% See also FREQZ.
% Author(s): T. Krauss, 3-19-93
% Copyright (c) 1988-98 by The MathWorks, Inc.
% $Revision: 1.5 $ $Date: 1998/12/23 22:37:03 $
error(nargchk(1,2,nargin))
tf = 0; % By default assume inputs are poles and zeros
prodsz = prod(size(z));
colsz = size(z,2);
switch nargin,
case 1,
% Only Z was specified, check if it is indeed Z or if it is a numerator
if (prodsz==colsz)&(~(prodsz == 1)),
% Row vector, num specified
p = 1;
tf = 1; % Set TF flag
else
% Scalar or column vector, interpret as Z
p = [];
end
case 2,
prodsp = prod(size(p));
colsp = size(p,2);
if xor(prodsz == 1,prodsp == 1),
% One of the inputs is a scalar but not both,
if (prodsz==colsz)&(prodsp==colsp),
% The other input is a row, TF specified
tf = 1; % Set TF flag
end
elseif ~((prodsz == 1)&(prodsp == 1)),
% No scalars specified
if (prodsz==colsz)&(prodsp==colsp),
% num and den specified
tf = 1; % Set TF flag
elseif (prodsz==colsz)|(prodsp==colsp),
% A row vector was specified with a column vector, this is not allowed
error('When specifying polynomials, both vectors must be rows.');
end
end
end
if tf == 1,
% TF was specified, convert to z,p,k
% Catch cases when the num or den are zero.
if max(abs(p)) == 0,
% Divide by zero not allowed
error('Denominator cannot be zero.');
elseif max(abs(z)) == 0,
% num is zero, there are no poles
p = 1;
end
% Pad A or B with trailing zeros if B and A are of different length
if length(z) < length(p)
z = [z zeros(1,length(p)-length(z))];
elseif length(p) < length(z)
p = [p zeros(1,length(z)-length(p))];
end
% Remove trailing zeros if both num and den have them
while z(end) == 0 & p(end) == 0,
z(end) = [];
p(end) = [];
end
% Find Poles and Zeros
z = roots(z);
p = roots(p);
end
if ~any(imag(z)),
z = z + j*1e-50;
end;
if ~any(imag(p)),
p = p + j*1e-50;
end;
% equivalent of 'hold on':
ax = gca;
set(ax,'nextplot','add')
set(get(ax,'parent'),'nextplot','add')
if ~isempty(z),
zh = plot(z,'*','markersize',7);
else
zh = [];
end
if ~isempty(p),
ph = plot(p,'+','markersize',6);
else
ph = [];
end
theta = linspace(0,2*pi,70);
oh = plot(cos(theta),sin(theta),':');
%set(oh,'xdat',[get(oh,'xdat') NaN ...
%xl(1)-diff(xl)*100 xl(2)+diff(xl)*100 NaN 0 0]);
%set(oh,'ydat',[get(oh,'ydat') NaN 0 0 NaN ...
%yl(1)-diff(yl)*100 yl(2)+diff(yl)*100]);
handle_counter = 2;
fuzz = diff(xl)/80; % horiz spacing between '*' or '+' and number
fuzz=0;
[r,c]=size(z);
if (r>1)&(c>1), % multiple columns in z
ZEE=z;
else
ZEE=z(:); c = min(r,c);
end;
for which_col = 1:c, % for each column of ZEE ...
z = ZEE(:,which_col);
[mz,z_ind]=mpoles(z);
for i=2:max(mz),
j=find(mz==i);
for k=1:length(j),
x = real(z(z_ind(j(k)))) + fuzz;
y = imag(z(z_ind(j(k))));
if (j(k)~=length(z)),
if (mz(j(k)+1)<mz(j(k))),
oh(handle_counter) = text(x,y,num2str(i));
handle_counter = handle_counter + 1;
end
else
oh(handle_counter) = text(x,y,num2str(i));
handle_counter = handle_counter + 1;
end
end
end
end
[r,c]=size(p);
if (r>1)&(c>1), % multiple columns in z
PEE=p;
else
PEE=p(:); c = min(r,c);
end;
for which_col = 1:c, % for each column of PEE ...
p = PEE(:,which_col);
[mp,p_ind]=mpoles(p);
for i=2:max(mp),
j=find(mp==i);
for k=1:length(j),
x = real(p(p_ind(j(k)))) + fuzz;
y = imag(p(p_ind(j(k))));
if (j(k)~=length(p)),
if (mp(j(k)+1)<mp(j(k))),
oh(handle_counter) = text(x,y,num2str(i));
handle_counter = handle_counter + 1;
end
else
oh(handle_counter) = text(x,y,num2str(i));
handle_counter = handle_counter + 1;
end
end
end
end
set(oh(2:length(oh)),'vertical','bottom');
if (nargout==1),
h1 = zh;
elseif (nargout==2),
h1 = zh;
h2 = ph;
elseif (nargout==3),
h1 = zh;
h2 = ph;
h3 = oh;
end
set(ax,'nextplot','replace')
set(get(ax,'parent'),'nextplot','replace')
没有合适的资源?快使用搜索试试~ 我知道了~
Digital Signal Processing-Second Edition-Matlab program
共92个文件
m:92个
需积分: 10 10 下载量 71 浏览量
2009-08-15
15:46:41
上传
评论
收藏 36KB RAR 举报
温馨提示
Matlab programs of book called Digital Signal Processing-Second Edition wrote by Dr. Mitra from california
资源推荐
资源详情
资源评论
收起资源包目录
Programs.rar (92个子文件)
Programs
Chapter2
Program_2_3.m 379B
Program_2_1.m 500B
Program_2_2.m 299B
Program_2_6.m 303B
Program_2_7.m 361B
Program_2_4.m 460B
Program_2_5.m 277B
Program_2_8.m 421B
Chapter8
Program_8_7.m 737B
Program_8_5.m 486B
Program_8_11.m 299B
Program_8_3.m 426B
Program_8_6.m 635B
Program_8_9.m 254B
strucver.m 420B
Program_8_8.m 413B
direct2.m 836B
gfft.m 430B
Program_8_4.m 461B
Program_8_10.m 304B
Program_8_1.m 395B
Program_8_2.m 670B
Chapter10
Program_10_3.m 663B
Program_10_5.m 652B
Program_10_7.m 729B
Program_10_6.m 649B
Program_10_2.m 629B
Program_10_1.m 635B
Program_10_9.m 849B
ovlp_ripple.m 246B
Program_10_10.m 971B
Program_10_8.m 573B
opt_filter.m 878B
make_bank.m 686B
comp_flat.m 231B
Program_10_4.m 643B
Chapter4
Program_4_2.m 500B
Program_4_1.m 580B
Program_4_4.m 322B
Program_4_3.m 379B
Chapter7
Program_7_6.m 487B
Program_7_8.m 419B
Program_7_4.m 474B
Program_7_2.m 467B
Program_7_10.m 390B
Program_7_1.m 448B
Program_7_3.m 472B
Program_7_7.m 398B
Program_7_5.m 362B
Program_7_9.m 263B
Chapter11
Program_11_2.m 394B
Program_11_5.m 259B
Program_11_6.m 623B
Program_11_1.m 777B
Program_11_7.m 832B
Program_11_4.m 435B
gfft.m 430B
Program_11_8.m 1004B
Program_11_3.m 287B
Chapter3
Program_3_1.m 833B
Program_3_9.m 284B
Program_3_12.m 566B
Program_3_8.m 453B
Program_3_7.m 450B
Program_3_11.m 542B
Program_3_6.m 617B
Program_3_5.m 770B
Program_3_10.m 326B
Program_3_2.m 746B
Program_3_3.m 739B
Program_3_4.m 353B
Chapter9
Program_9_3.m 446B
Program_9_5.m 464B
Program_9_7.m 399B
Program_9_8.m 375B
Program_9_6.m 648B
plotzp.m 6KB
Program_9_2.m 622B
Program_9_1.m 470B
Program_9_4.m 658B
a2dR.m 336B
a2dT.m 335B
Chapter5
Program_5_2.m 451B
Program_5_4.m 630B
Program_5_3.m 538B
Program_5_1.m 549B
Chapter6
Program_6_5.m 590B
Program_6_6.m 189B
Program_6_3.m 242B
Program_6_1.m 226B
Program_6_4.m 577B
Program_6_2.m 481B
共 92 条
- 1
资源评论
lanburt
- 粉丝: 0
- 资源: 2
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- (源码)基于SSM框架的权限管理系统.zip
- (源码)基于OpenGL的3D模型渲染与交互系统.zip
- (源码)基于JFinal框架的蜗牛调查问卷系统.zip
- (源码)基于Arduino的夜间自动鸡舍门系统(motokurnikator).zip
- (源码)基于Spring Boot和Thymeleaf的人事管理系统.zip
- (源码)基于C++的Huffman编码压缩解压系统.zip
- (源码)基于Python的智能家居监控与控制系统.zip
- (源码)基于C++的拍子与虚拟环境交互系统.zip
- (源码)基于C++和Boost库的贝叶斯网络学习系统.zip
- (源码)基于C#的太空工程师智能飞船系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功