LinearAlgebraOperations<T>.AbsoluteMaxIndex Method

Definition

Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

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, ReadOnlySpanSlice<Complex<T>>)

Finds the index of element having max.

AbsoluteMaxIndex(Int32, ReadOnlySpan<T>, Int32)

Finds the index of element having max.

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

Finds the index of element having max.

AbsoluteMaxIndex(Int32, ArraySlice<T>)

Finds the index of element having max.

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

Parameters

n  Int32
 
x  ArraySlice<T>
 

Return Value

Int32

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 int AbsoluteMaxIndex(
	int n,
	ArraySlice<Complex<T>> x
)

Parameters

n  Int32
 
x  ArraySlice<Complex<T>>
 

Return Value

Int32

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

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

Finds the index of element having max.

C#
public int AbsoluteMaxIndex(
	int n,
	ReadOnlySpanSlice<Complex<T>> x
)

Parameters

n  Int32
 
x  ReadOnlySpanSlice<Complex<T>>
 

Return Value

Int32

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

AbsoluteMaxIndex(Int32, ReadOnlySpan<T>, Int32)

Finds the index of element having max.

C#
public abstract int AbsoluteMaxIndex(
	int n,
	ReadOnlySpan<T> x,
	int incx
)

Parameters

n  Int32
 
x  ReadOnlySpan<T>
 
incx  Int32
 

Return Value

Int32

Implements

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

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, ReadOnlySpan<Complex<T>>, Int32)

Finds the index of element having max.

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

Parameters

n  Int32
 
zx  ReadOnlySpan<Complex<T>>
 
incx  Int32
 

Return Value

Int32

Implements

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

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