convolutivemixtureparameters.m

来自「matlab的源程序」· M 代码 · 共 32 行

M
32
字号
function [Parameters] = ConvolutiveMixtureParameters()% [Parameters] = ConvolutiveMixtureParameters()%% This function fill the CMA parameters for% source extraction of convolutive mixtures.%% Author : Pierre JALLON% Date of creation : 04/23/2005% Date of last modification : 04/23/20005%
ParamStruct = struct(...    'LFilter'               ,1,...      % Extracting filter length (1 for instantaneous mixture)    'Seuil'                 ,1e-3,...   % Stop criteria : Difference of two filters norms    'NbIterationMax'        ,100,...    % Maximal number of algorithm iteration    'SeuilStopAlgo'         ,1e-2,...   % Stop criteria : for the detection of source signals in the mixture    'LSubstractFiltreAC'    ,0,...      % Length of anti-causal substracting filter    'LSubstractFiltreC'     ,0);        % Length of causal substracting filterParameters = struct(ParamStruct);Parameters.LFilter = 15;Parameters.Seuil = 5e-3;Parameters.NbIterationMax = 2000;Parameters.SeuilStopAlgo = 1e-2;Parameters.Method = 1;Parameters.LSubstractFiltreAC = 80;Parameters.LSubstractFiltreC = 20;

⌨️ 快捷键说明

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