📄 p2x.m
字号:
function x = p2x(p,tol)% P2X - From image to an input/output representation.% P2X(P) is an input/output representation of image(P).% P2X(P,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 image representationp = minp(p); % Define the number of inputs[sd,m] = size(p);% Check the conditioning of the transformationif rcond(p(1:m,:)) < tol error('Conversion to an I/O representation is ill conditioned.')end% Transformx = ( p(m+1:end,:) / p(1:m,:) )';
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -