Sparse Linear Algebra Operations.Scale And Add In Place Method
Definition
Namespace: Numerics.NET.LinearAlgebra.Implementation
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Scale | Evaluates a vector plus the product of a scalar and a sparse vector. |
Scale | Evaluates a vector plus the product of a scalar and a sparse vector. |
ScaleAndAddInPlace(Int32, Complex<Double>, ReadOnlySpan<Complex<Double>>, ReadOnlySpan<Int32>, Int32, Span<Complex<Double>>, Int32)
Evaluates a vector plus the product of a scalar and a sparse vector.
public override void ScaleAndAddInPlace(
int n,
Complex<double> alpha,
ReadOnlySpan<Complex<double>> x,
ReadOnlySpan<int> indx,
int m,
Span<Complex<double>> y,
int yStride
)
Parameters
- n Int32
- The number of elements in the vectors x and y.
- alpha Complex<Double>
- The scalar value used to multiply the elements of x.
- x ReadOnlySpan<Complex<Double>>
- A reference to a one-dimensional array containing the elements of the vector x.
- indx ReadOnlySpan<Int32>
- Integer array of component indices.
- m Int32
- The length of the vector y.
- y Span<Complex<Double>>
- A reference to a one-dimensional array containing the elements of the vector y. The elements of y are overwritten with the result.
- yStride Int32
- The distance between successive elements in y.
Implements
ISparseLinearAlgebraOperations<T>.ScaleAndAddInPlace(Int32, T, ReadOnlySpan<T>, ReadOnlySpan<Int32>, Int32, Span<T>, Int32)ISparseLinearAlgebraOperations<T>.ScaleAndAddInPlace(Int32, T, ReadOnlySpan<T>, ReadOnlySpan<Int32>, Int32, Span<T>, Int32)
ScaleAndAddInPlace(Int32, Double, ReadOnlySpan<Double>, ReadOnlySpan<Int32>, Int32, Span<Double>, Int32)
Evaluates a vector plus the product of a scalar and a sparse vector.
public override void ScaleAndAddInPlace(
int n,
double alpha,
ReadOnlySpan<double> x,
ReadOnlySpan<int> indx,
int m,
Span<double> y,
int yStride
)
Parameters
- n Int32
- The number of elements in the vectors x and y.
- alpha Double
- The scalar value used to multiply the elements of x.
- x ReadOnlySpan<Double>
- A reference to a one-dimensional array containing the elements of the vector x.
- indx ReadOnlySpan<Int32>
- Integer array of component indices.
- m Int32
- The length of the vector y.
- y Span<Double>
- A reference to a one-dimensional array containing the elements of the vector y. The elements of y are overwritten with the result.
- yStride Int32
- The distance between successive elements in y.
Implements
ISparseLinearAlgebraOperations<T>.ScaleAndAddInPlace(Int32, T, ReadOnlySpan<T>, ReadOnlySpan<Int32>, Int32, Span<T>, Int32)ISparseLinearAlgebraOperations<T>.ScaleAndAddInPlace(Int32, T, ReadOnlySpan<T>, ReadOnlySpan<Int32>, Int32, Span<T>, Int32)