instantaneousmixtureparameters.m
来自「matlab的源程序」· M 代码 · 共 32 行
M
32 行
function [Parameters] = InstantaneousMixtureParameters()% [Parameters] = InstantaneousMixtureParameters()%% This function fill the CMA parameters for% source extraction of instantaneous 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-5,... % 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 = 1;Parameters.Seuil = 1e-4;Parameters.NbIterationMax = 1000;Parameters.SeuilStopAlgo = 1e-2;Parameters.Method = 1;Parameters.LSubstractFiltreAC = 0;Parameters.LSubstractFiltreC = 0;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?