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

📄 r2x.m

📁 加权总体最小二乘matlab工具箱
💻 M
字号:
function x = r2x(r,tol)% R2X - From kernel to an input/output representation.% R2X(R) is an input/output representation of ker(R).% R2X(R,TOL) ill conditioning of the transformation is % checked with the user defined tolerance TOL.if nargin == 1  tol = 1e-14; % default end% Find a minimal kernel representationr = minr(r); % Define number of inputs and outputs[p,sd] = size(r);m = sd - p;% Check the conditioning of the transformationif rcond(r(:,m+1:end)) < tol  error('Conversion to an I/O representation is ill conditioned.')end% Transformx = -( r(:,m+1:end) \ r(:,1:m) )';

⌨️ 快捷键说明

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