LinearAlgebraOperations<T>.AbsoluteMaxIndex Method

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

AbsoluteMaxIndex(Int32, ArraySlice<T>)

Finds the index of element having max.

AbsoluteMaxIndex(Int32, ArraySlice<Complex<T>>)

Finds the index of element having max.

AbsoluteMaxIndex(Int32, ArraySlice<T>)

Finds the index of element having max.

C#
public virtual int AbsoluteMaxIndex(
	int n,
	ArraySlice<T> dx
)

Parameters

n  Int32
 
dx  ArraySlice<T>
 

Return Value

Int32

Implements

ILinearAlgebraOperations<T>.AbsoluteMaxIndex(Int32, ArraySlice<T>)

Remarks

            absolute value.
            

Further Details:

            jack dongarra, linpack, 3/11/78.
            modified 3/93 to return if incx .le. 0.
            modified 12/3/93, array(1) declarations changed to array(*)
            

Authors: Univ. of Tennessee, Univ. of California Berkeley, Univ. of Colorado Denver, NAG Ltd.

Date: November 2011

AbsoluteMaxIndex(Int32, ArraySlice<Complex<T>>)

Finds the index of element having max.

C#
public abstract int AbsoluteMaxIndex(
	int n,
	ArraySlice<Complex<T>> zx
)

Parameters

n  Int32
 
zx  ArraySlice<Complex<T>>
 

Return Value

Int32

Implements

ILinearAlgebraOperations<T>.AbsoluteMaxIndex(Int32, ArraySlice<T>)

Remarks

            absolute value.
            

Further Details:

            jack dongarra, 1/15/85.
            modified 3/93 to return if incx .le. 0.
            modified 12/3/93, array(1) declarations changed to array(*)
            

Authors: Univ. of Tennessee, Univ. of California Berkeley, Univ. of Colorado Denver, NAG Ltd.

Date: November 2011

See Also