SymmetricMatrix<T>.MultiplySymmetric Method

Computes the symmetric product of a vector and this matrix.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public T MultiplySymmetric(
	Vector<T> vector
)

Parameters

vector  Vector<T>
A Vector<T>.

Return Value

T
The product of vector as a row vector, this matrix, and vector as a column vector.

See Also