Click or drag to resize

EmpiricalModeDecompositionExtractIntrinsicModeFunctionComponents Method

Extracts the intrinsic mode function components (IMFCs) of a signal by empirical mode decomposition.

Namespace: Altaxo.Science.Signals
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public IEnumerable<(double[] , double[] , int modeNumber)> ExtractIntrinsicModeFunctionComponents(
	double[] x,
	double[] y,
	int maximumNumberOfModesToReturn,
	bool returnRest
)

Parameters

x  Double
The x-values of the signal.
y  Double
The y-values of the signal.
maximumNumberOfModesToReturn  Int32
The maximum number of modes to return from this enumeration.
returnRest  Boolean
If true, the returned enumerattion will also include the rest.

Return Value

IEnumerableValueTupleDouble, Double, Int32
An endless enumeration of signals, consisting of the mode y, the residual yResidual, and representing the modes of the original signal.
See Also