📄 signm.m
字号:
function [S, N] = signm(A)
%SIGNM Matrix sign decomposition.
% [S, N] = SIGNM(A) is the matrix sign decomposition A = S*N,
% computed via the Schur decomposition.
% S is the matrix sign function, sign(A).
% Reference:
% N. J. Higham, The matrix sign decomposition and its relation to the
% polar decomposition, Linear Algebra and Appl., 212/213:3-20, 1994.
[Q, T] = schur(A,'complex');
S = Q * matsignt(T) * Q';
% Only problem with Schur method is possible nonzero imaginary part when
% A is real. Next line takes care of that.
if ~any(imag(A)), S = real(S); end
if nargout == 2
N = S*A;
end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -