LinearAlgebraOperations<T>.MultiplyInPlace Method

Definition

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

Overload List

MultiplyInPlace(Int32, T, ArraySlice<T>)

Scales a vector by a constant.

C#
public void MultiplyInPlace(
	int n,
	T a,
	ArraySlice<T> x
)

Parameters

n  Int32
 
a  T
 
x  ArraySlice<T>
 

Remarks

            uses unrolled loops for increment equal to one.
            

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

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

Scales a vector by a constant.

C#
public void MultiplyInPlace(
	int n,
	T da,
	ArraySlice<Complex<T>> x
)

Parameters

n  Int32
 
da  T
 
x  ArraySlice<Complex<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

MultiplyInPlace(Int32, T, SpanSlice<Complex<T>>)

Scales a vector by a constant.

C#
public void MultiplyInPlace(
	int n,
	T da,
	SpanSlice<Complex<T>> x
)

Parameters

n  Int32
 
da  T
 
x  SpanSlice<Complex<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

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

Scales a vector by a constant.

C#
public void MultiplyInPlace(
	int n,
	Complex<T> za,
	ArraySlice<Complex<T>> x
)

Parameters

n  Int32
 
za  Complex<T>
 
x  ArraySlice<Complex<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

MultiplyInPlace(Int32, Complex<T>, SpanSlice<Complex<T>>)

Scales a vector by a constant.

C#
public void MultiplyInPlace(
	int n,
	Complex<T> za,
	SpanSlice<Complex<T>> x
)

Parameters

n  Int32
 
za  Complex<T>
 
x  SpanSlice<Complex<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

MultiplyInPlace(Int32, T, Span<T>, Int32)

Scales a vector by a constant.

C#
public abstract void MultiplyInPlace(
	int n,
	T a,
	Span<T> x,
	int incx
)

Parameters

n  Int32
 
a  T
 
x  Span<T>
 
incx  Int32
 

Implements

ILinearAlgebraOperations<T>.MultiplyInPlace(Int32, T, Span<T>, Int32)

Remarks

            uses unrolled loops for increment equal to one.
            

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

MultiplyInPlace(Int32, T, Span<Complex<T>>, Int32)

Scales a vector by a constant.

C#
public abstract void MultiplyInPlace(
	int n,
	T da,
	Span<Complex<T>> zx,
	int incx
)

Parameters

n  Int32
 
da  T
 
zx  Span<Complex<T>>
 
incx  Int32
 

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

MultiplyInPlace(Int32, Complex<T>, Span<Complex<T>>, Int32)

Scales a vector by a constant.

C#
public abstract void MultiplyInPlace(
	int n,
	Complex<T> za,
	Span<Complex<T>> zx,
	int incx
)

Parameters

n  Int32
 
za  Complex<T>
 
zx  Span<Complex<T>>
 
incx  Int32
 

Implements

ILinearAlgebraOperations<T>.MultiplyInPlace(Int32, T, Span<T>, Int32)

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