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

📄 chenmh_sidi.m

📁 Frequently used algorithms for numerical analysis and signal processing
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -