复制
收藏
提问
全网

% % function signalandsystem_third % % 求极点和零点 % function [p, q] = sjdt(A, B) % p = roots(A); % q = roots(B); % p = p'; % q = q'; % % % 确定绘图范围 % x = max(abs([p q])); % x = x + 0.1; % 注意这里原来是0.l,应该改为0.1 % y = x; % % % 绘图 % clf; % hold on; % axis([-x x -y y]); % axis('square'); % plot([-x x], [0 0]); % plot([0 0], [-y y]); % plot(real(p), imag(p), 'Xk'); % 极点分布图 % plot(real(q), imag(q), 'O'); % 零点分布图 % title('连续系统零、极点分布图'); % text(0.2, x - 0.2, '虚轴'); % text(y - 0.2, 0.2, '实轴'); % end % % % 主程序 % clc; % clear all; % a = [1 ]; % b = [1 1/10]; % figure(1); % impulse(b, a); % grid; % figure(2); % [p, q] = sjdt(a, b); % grid; % end

43770304f
4个月前
全网
文档
学术
百科
知识库
时间不限
自动
您已终止本次搜索,可编辑问题后重新提问。
更专业一些
在线客服