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

📄 convolutivemixtureparameters.m

📁 matlab的源程序
💻 M
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -