【 MATLAB 】zplane 函数介绍(离散时间系统的零极图)

举报
李锐博恩 发表于 2021/07/15 05:00:05 2021/07/15
【摘要】 zplane Zero-pole plot for discrete-time systems Syntax zplane(b,a) zplane(b,a), where b and a are row vectors, first uses roots to find the zeros and pole...

zplane

Zero-pole plot for discrete-time systems

Syntax


zplane(b,a)

zplane(b,a), where b and a are row vectors, first uses roots to find the zeros and poles of the transfer function represented by the numerator coefficients b and the denominator coefficients a.

zplane(b,a),其中b和a是行向量,首先使用根来找到由分子系数b和分母系数a表示的传递函数的零和极点。

ba — Transfer function coefficients
row vectors

Transfer function coefficients, specified as row vectors. The transfer function is defined in terms of z^–1:

例子:

已知一因果系统差分方程:

y(n) = 0.9 y(n - 1) + x(n);

使用zplane函数画出零极点图:

题解:有差分方程即可看出传递函数的分子和分母系数,之后应用zplane函数即可画出零极点图:


  
  1. clc;clear;close all;
  2. b = [1,0];
  3. a = [1,-0.9];
  4. zplane(b,a);


暂时只用到了上面的,下面的语法用到了再查。

 

zplane(z,p)

[hz,hp,ht] = zplane(___)

zplane(d)

[vz,vp,vk] = zplane(d)

Description

zplane(z,p) plots the zeros specified in column vector z and the poles specified in column vector p in the current figure window. The symbol 'o' represents a zero and the symbol 'x'represents a pole. The plot includes the unit circle for reference.

If z and p are matrices, then zplane plots the poles and zeros in the columns of z and p in different colors.

 

[hz,hp,ht] = zplane(___) returns vectors of handles to the zero lines, hz, and the pole lines, hpht 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.

zplane(d) finds the zeros and poles of the transfer function represented by the digital filter, d. Use designfilt to generate d based on frequency-response specifications. The pole-zero plot is displayed in fvtool.

[vz,vp,vk] = zplane(d) returns the zeros (vector vz), poles (vector vp), and gain (scalar vk) corresponding to the digital filter d.

文章来源: reborn.blog.csdn.net,作者:李锐博恩,版权归原作者所有,如需转载,请联系作者。

原文链接:reborn.blog.csdn.net/article/details/83449300

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。