?? callacdc_sym.m
字號:
%callacdc_sym (call acdc_sym)- a small demo
%showing the way to call acdc_sym (the
%symmetric version).
%generate the target matrices.
%for running with old data set newdata=0.
newdata=1;
if newdata
N=3;
K=5;
TrueA=randn(N,N)+1j*randn(N,N);;
TrueL=randn(N,K)+1j*randn(N,K);
M=zeros(N,N,K);
for k=1:K
M(:,:,k)=TrueA*diag(TrueL(:,k))*transpose(TrueA);
Noise=.01*(randn(N,N)+1j*randn(N,N));
%Noise has to be symmetric.
Noise=Noise+transpose(Noise);
M(:,:,k)=M(:,:,k)+Noise;
end
end
%call acdc_sym without initialization
A1=acdc_sym(M);
%show the resulting "demixing":
%(note that the phase ambiguity is inherent
%and cannot be resolved without further
%information on the source/mixing)
disp('demixing attained w/o initialization:')
disp(A1\TrueA)
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -