ArrayMath.MaxIndex Method

Returns the index of the largest element in an array.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static int MaxIndex(
	this double[] array
)

Parameters

array  Double[]
A Double array.

Return Value

Int32
The value of the largest element in array.

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