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

📄 order.m

📁 A Matlab toolbox for exact linear time-invariant system identification is presented. The emphasis is
💻 M
字号:
% ORDER - order delection from the singular values.%% n = order(s,tol)% % S   - vector of singular values% TOL - tolerance for order selection, default 1e-7%   If TOL < 0, the SVs are plotted and an input is asked.% N   - orderfunction n = order(s,tol)TOL = 1e-7; % default value for the toleranceif nargin < 2 | isempty(tol)  tol = TOL;endif tol > 0  n = sum(s > tol);else  bar(s);   title('singular values'), xlabel('i'), ylabel('s_i'),  n = input('Choose the order = ');end

⌨️ 快捷键说明

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