LinearAlgebraOperations<T>.RealOneNorm Method

Definition

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

Overload List

RealOneNorm(Int32, ArraySlice<T>) Returns the sum of the absolute values of the elements of a vector.
RealOneNorm(Int32, ArraySlice<Complex<T>>)

Takes the sum of the absolute values.

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

Takes the sum of the absolute values.

RealOneNorm(Int32, ReadOnlySpan<T>, Int32) Returns the sum of the absolute values of the elements of a vector.
RealOneNorm(Int32, ReadOnlySpan<Complex<T>>, Int32)

Takes the sum of the absolute values.

RealOneNorm(Int32, ArraySlice<T>)

Returns the sum of the absolute values of the elements of a vector.
C#
public T RealOneNorm(
	int n,
	ArraySlice<T> x
)

Parameters

n  Int32
The number of elements in the vector x.
x  ArraySlice<T>
A reference to a one-dimensional array containing the elements of the vector x.

Return Value

T

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

Takes the sum of the absolute values.

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

Parameters

n  Int32
 
x  ArraySlice<Complex<T>>
 

Return Value

T

Remarks

Further Details:

            jack dongarra, 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

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

Takes the sum of the absolute values.

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

Parameters

n  Int32
 
x  ReadOnlySpanSlice<Complex<T>>
 

Return Value

T

Remarks

Further Details:

            jack dongarra, 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

RealOneNorm(Int32, ReadOnlySpan<T>, Int32)

Returns the sum of the absolute values of the elements of a vector.
C#
public T RealOneNorm(
	int n,
	ReadOnlySpan<T> x,
	int incx
)

Parameters

n  Int32
The number of elements in the vector x.
x  ReadOnlySpan<T>
A reference to a one-dimensional array containing the elements of the vector x.
incx  Int32
The distance between elements in x.

Return Value

T

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

Takes the sum of the absolute values.

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

Parameters

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

Return Value

T

Remarks

Further Details:

            jack dongarra, 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

See Also