chenmh_sidi.m
来自「Frequently used algorithms for numerical」· M 代码 · 共 13 行
M
13 行
function [W,S] = Chenmh_Sidi(Rn,Rs);
G = chol(Rn); %Rn = G'*G
G_inv = inv(G);
[U,S] = svd(G_inv'*Rs*G_inv);
W = G_inv*U;
% Relation between Simultaneous Diagonalization
% and Generalized Singular Value Decomposition
% p = 100; q = 200; r = 3;
% A = randn(p,r); B = randn(q,r);
% [U,V,X,C,S0] = gsvd(A,B);
% [W,S] = Chenmh_Sidi(A'*A,B'*B);
% [(X^-1)'*(C'*C)^-.5 W]
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?