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

📄 null.m

📁 it is a source code for geodesy
💻 M
字号:
function N = null(A)
%NULL	Nullspace of a matrix
%	   N = NULL(A) uses the pivoting LU factorization computed by
%	   PLU and the resulting reduced row echelon form computed by REF to
%	   find a matrix N whose columns are a basis for the nullspace of A.
%	   The number of columns of N is the nullity of A.
%	   If A has independent columns, then N is empty, N = [];
%
%	   (This supersedes the MATLAB function NULL(A) which computes a
%	   basis for the nullspace of A with orthonormal columns and, for
%	   badly conditioned problems, even a possibly different dimension.)
%
%See also PLU, REF, SOLVE.

[R,pivcol] = ref(A);
[m,n] = size(A);

% The rank is the number of pivot columns.
r = length(pivcol);

% The nonpivot columns of R provide a basis for the nullspace.

nopiv = 1:n;
nopiv(pivcol) = [];
N = zeros(n,n-r);
if n > r
   N(nopiv,:) = eye(n-r,n-r);
   if r > 0
      N(pivcol,:) = -R(1:r,nopiv);
   end
end
%%%%%%%%%%%%%%%%% end null.m  %%%%%%%%%%%%%%%%%%%%%%

⌨️ 快捷键说明

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