poldec.m
来自「本压缩文件提供了matlab的时间序列工具箱」· M 代码 · 共 29 行
M
29 行
function [U, H] = poldec(A)
%POLDEC Polar decomposition.
% [U, H] = POLDEC(A) computes a matrix U of the same dimension
% (m-by-n) as A, and a Hermitian positive semi-definite matrix H,
% such that A = U*H.
% U has orthonormal columns if m >= n, and orthonormal rows if m <= n.
% U and H are computed via an SVD of A.
% U is a nearest unitary matrix to A in both the 2-norm and the
% Frobenius norm.
% Reference:
% N. J. Higham, Computing the polar decomposition---with applications,
% SIAM J. Sci. Stat. Comput., 7(4):1160--1174, 1986.
%
% (The name `polar' is reserved for a graphics routine.)
[m, n] = size(A);
[P, S, Q] = svd(A, 0); % Economy size.
if m < n % Ditto for the m<n case.
S = S(:, 1:m);
Q = Q(:, 1:m);
end
U = P*Q';
if nargout == 2
H = Q*S*Q';
H = (H + H')/2; % Force Hermitian by taking nearest Hermitian matrix.
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?