Product of a hermitian matrix and a vector.
Namespace: Extreme.Mathematics.LinearAlgebra.ImplementationAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
public override void HermitianMultiplyAndAddInPlace(
MatrixTriangle storageTriangle,
int n,
DoubleComplex alpha,
Array2D<DoubleComplex> a,
ArraySlice<DoubleComplex> x,
DoubleComplex beta,
ArraySlice<DoubleComplex> y
)
Public Overrides Sub HermitianMultiplyAndAddInPlace (
storageTriangle As MatrixTriangle,
n As Integer,
alpha As DoubleComplex,
a As Array2D(Of DoubleComplex),
x As ArraySlice(Of DoubleComplex),
beta As DoubleComplex,
y As ArraySlice(Of DoubleComplex)
)
public:
virtual void HermitianMultiplyAndAddInPlace(
MatrixTriangle storageTriangle,
int n,
DoubleComplex alpha,
Array2D<DoubleComplex> a,
ArraySlice<DoubleComplex> x,
DoubleComplex beta,
ArraySlice<DoubleComplex> y
) override
abstract HermitianMultiplyAndAddInPlace :
storageTriangle : MatrixTriangle *
n : int *
alpha : DoubleComplex *
a : Array2D<DoubleComplex> *
x : ArraySlice<DoubleComplex> *
beta : DoubleComplex *
y : ArraySlice<DoubleComplex> -> unit
override HermitianMultiplyAndAddInPlace :
storageTriangle : MatrixTriangle *
n : int *
alpha : DoubleComplex *
a : Array2D<DoubleComplex> *
x : ArraySlice<DoubleComplex> *
beta : DoubleComplex *
y : ArraySlice<DoubleComplex> -> unit
Parameters
- storageTriangle
- Type: Extreme.MathematicsMatrixTriangle
Specifies whether the matrix is an
upper or lower triangular matrix. - n
- Type: SystemInt32
The number of rows and columns in the matrix a. - alpha
- Type: Extreme.MathematicsDoubleComplex
The scalar used to multiply the
matrix-vector product. - a
- Type: Extreme.CollectionsArray2DDoubleComplex
Reference to the first element in a
one-dimensional array that contains the elements of the
matrix. - x
- Type: Extreme.CollectionsArraySliceDoubleComplex
A reference to a one-dimensional array
containing the elements of the vector x. - beta
- Type: Extreme.MathematicsDoubleComplex
The scalar used to multiply y.
- y
- Type: Extreme.CollectionsArraySliceDoubleComplex
A reference to a one-dimensional array
containing the elements of the vector y.
The elements of y are overwritten with
the result.
Implements
ILinearAlgebraOperationsTHermitianMultiplyAndAddInPlace(MatrixTriangle, Int32, T, Array2DT, ArraySliceT, T, ArraySliceT)
Numerical Libraries
Supported in: 5.x
Reference