⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mypzmap.m

📁 vTools is a toolbox for Matlab 5.3 developed within the Department of Electrical Systems and A
💻 M
字号:
function mypzmap(a,b,c,d)

% does a simple pzmap plot without too many
% objects on the picture, it was necessary
% in version 6 because MvTools couln't handle 
% all the new callbacks and uicontextmenus

if size(a,1)>0,

    [p,z]=pzmap(a,b,c,d);

    p1=plot(real(p),imag(p),'xr');
    set(p1,'MarkerSize',8);
    hold on;
    p2=plot(real(z),imag(z),'ob');
    set(p2,'MarkerSize',6);
    
    Xl=get(gca,'Xlim');Yl=get(gca,'Ylim');
    p4=plot(2*Xl,[0 0],':k');p5=plot([0 0],2*Yl,':k');
    set(gca,'Xlim',Xl*1.1);set(gca,'Ylim',Yl*1.1);
    hold off;
    
    xlabel('Real Axis');ylabel('Imag Axis');title('Pole-Zero Map');
    
end

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -