📄 inde.m
字号:
function y=Inde(x)
%copyright 2005.7.5
%A New Approach to Blind Source Separation with Global Optimal Property
%matlab code author: xiaobing zhang
%
%构造广义特征问题
%预处理
[n,t] = size(x);
m=mean(x')'*ones(1,t);
x = x - m;% Remove mean
[F,D]=eig((x*x')/t);
v=F*(D^(-0.5))*F';
x=v*x;%white
[N,P]=size(x);
if P>10000
P=10000;
end
a=ones(1,P)/P;
g=filter(a,1,x');
U=cov(x',1);
V=cov(g,1);
[W,D]=eig(V,U);
y=x'*W;
y=y';
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -