user_alg2.m

来自「ICALAB for Signal Processing Toolbox f」· M 代码 · 共 16 行

M
16
字号
function W = user_alg2( X );
% ICALAB user can replace this function by own algotrithm computing demixing matrix W
%
% This is only dummy function
%
%   input:
%    x - signals vector, each signal is in different row
%
%   output:
%    W - separation matrix
%        if user algorithm use prewhitening, matrix W = W * Q

fprintf( '\nYou can insert here your own algorithm\n\n' );

W = eye( size(X,1) );

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?