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

📄 mknyq.m

📁 控制系统计算机辅助设计——MATLAB语言与应用(源代码)
💻 M
字号:
function mknyq(r,im,w,plt)
%MKNYQ  Mark points along a Nyquist plot.
%       MKNYQ(R,IM,W,plt) marks the points R,IM
%       with the numbers in the vector W.
%       R and IM can be vectors or matrices.
%       If matrices columns are plotted against columns.
%       The input argument plt is optional and indicates
%       the number of plots per page either 1 or 4.
%       The default is 4.
%
%       MKNYQ(C,W,plt) marks the real versus imaginary
%       curves of C with the numbers in the vector W.
%
%       The plot is marked using MKPLOT.
%       MKPLOT turns HOLD OFF.
%       It also toggles the AXIS command.
%       See MKPLOT for more details.
%       See also PLOTNYQ,SUBPLOT.

%       Dr M.P. Ford 4th August 1987
% Copyright (c) 1987 by GEC Engineering Research Centre & Cambridge Control Ltd

nargs=nargin;
error(nargchk(2,4,nargs));
if nargs==2
   mkplot(r,im)
elseif nargs==3
   mkplot(r,im,w)
else     %  nargs==4   use the inputs as is
   mkplot(r,im,w,plt);
end

⌨️ 快捷键说明

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