ManagedLinearAlgebraOperationsOfSingle.BandSymmetricMultiplyAndAddInPlace Method

Product of a symmetric band matrix and a vector.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra.Implementation
Assembly: Extreme.Numerics.SinglePrecision (in Extreme.Numerics.SinglePrecision.dll) Version: 8.1.4
C#
public override void BandSymmetricMultiplyAndAddInPlace(
	MatrixTriangle storedTriangle,
	int n,
	int k,
	float alpha,
	Array2D<float> a,
	ArraySlice<float> x,
	float beta,
	ArraySlice<float> y
)

Parameters

storedTriangle  MatrixTriangle
Specifies whether the matrix is an upper or lower triangular matrix.
n  Int32
The number of rows and columns in the matrix a.
k  Int32
The bandwidth of the matrix a.
alpha  Single
The scalar used to multiply the matrix-vector product.
a  Array2D<Single>
Reference to the first element in a one-dimensional array that contains the elements of the matrix.
x  ArraySlice<Single>
A reference to a one-dimensional array containing the elements of the vector x.
beta  Single
The scalar used to multiply y.
y  ArraySlice<Single>
A reference to a one-dimensional array containing the elements of the vector y. The elements of y are overwritten with the result.

Implements

ILinearAlgebraOperations<T>.BandSymmetricMultiplyAndAddInPlace(MatrixTriangle, Int32, Int32, T, Array2D<T>, ArraySlice<T>, T, ArraySlice<T>)

See Also