Click or drag to resize

StreamingStatisticsMinimumMagnitudePhase(IEnumerableComplex) Method

Returns the smallest absolute value from the enumerable, in a single pass without memoization. Returns NaN if data is empty or any entry is NaN.

Namespace: Altaxo.Calc.Statistics
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static Complex MinimumMagnitudePhase(
	IEnumerable<Complex> stream
)

Parameters

stream  IEnumerableComplex
Sample stream, no sorting is assumed.

Return Value

Complex
The complex value with the smallest magnitude (ties broken by smaller phase), or a complex NaN pair if the stream is empty or contains NaN.
See Also