?? findp.m
字號:
function P = findp(A);
%FINDP Nonsingular basis permutation matrix.
% P = FINDP(A) locates a permutation matrix such that
% the leading square matrix is nonsingular.If A has
% more columns (n) than rows(m), and A is of rank m, then
% P is a permutation matrix such that the leading m-matrix
% of A*P is of full rank.
% Copyright (c) 1990-98 by The MathWorks, Inc.
% $Revision: 1.2 $ $Date: 1998/03/21 16:29:08 $
[m,n] = size(A);
if m < n,
A = A';
end
if ~issparse(A),
A=sparse(A);
end;
pp = colmmd(A);
[L,U,P] = lu(A(:,pp));
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -