ArrayMath.AbsoluteMin Method

Returns the value of the element in an array that has the smallest absolute value.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static double AbsoluteMin(
	this double[] array
)

Parameters

array  Double[]
A Double array.

Return Value

Double
The value of the element in array that has the smallest absolute value.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Double[]. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also