Managed Linear Algebra Operations.Multiply In Place Method
Definition
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Multiply | |
Multiply | Scales a vector by a constant. |
Multiply | Scales a vector by a constant. |
Multiply | Scales a vector by a constant. |
Multiply | Scales a vector by a constant. |
Multiply | Scales a vector by a constant. |
Multiply | Scales a vector by a constant. |
Multiply | Scales a vector by a constant. |
MultiplyInPlace(Int32, Complex<Double>, Span<Complex<Double>>, Int32)
Scales a vector by a constant.
public override void MultiplyInPlace(
int n,
Complex<double> a,
Span<Complex<double>> x,
int incx
)
Parameters
- n Int32
- The number of elements in the vector x.
- a Complex<Double>
- x Span<Complex<Double>>
- A span containing the elements of the vector x. The elements of x are overwritten with the result.
- incx Int32
- The distance between elements in x.
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
MultiplyInPlace(Int32, Double, Span<Complex<Double>>, Int32)
Scales a vector by a constant.
public override void MultiplyInPlace(
int n,
double da,
Span<Complex<double>> x,
int incx
)
Parameters
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, Double, Span<Double>, Int32)
Scales a vector by a constant.
public override void MultiplyInPlace(
int n,
double alpha,
Span<double> x,
int incx
)
Parameters
- n Int32
- The number of elements in the vector x.
- alpha Double
- The scalar value used to multiply the elements of x.
- x Span<Double>
- A span containing the elements of the vector x. The elements of x are overwritten with the result.
- incx Int32
- The distance between elements in x.
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