HermitianMatrix<T>.SubtractOuterProductInPlace Method

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 10.5.0

Overload List

SubtractOuterProductInPlace(Vector<T>) Updates the matrix by subtracting the outer product of a vector with itself.
SubtractOuterProductInPlace(Matrix<T>, MatrixOperationSide) Updates a Hermitian matrix by subtracting the product of a matrix and its transpose.
SubtractOuterProductInPlace(Vector<T>, Vector<T>) Updates the matrix by subtracting the outer product of two vectors.

SubtractOuterProductInPlace(Matrix<T>, MatrixOperationSide)

Updates a Hermitian matrix by subtracting the product of a matrix and its transpose.
C#
public HermitianMatrix<T> SubtractOuterProductInPlace(
	Matrix<T> matrix,
	MatrixOperationSide side = MatrixOperationSide.Right
)

Parameters

matrix  Matrix<T>
A Matrix<T>.
side  MatrixOperationSide  (Optional)
Optional. Specifies whether the transposed matrix is the left or right operand. The default is Right.

Return Value

HermitianMatrix<T>
A reference to this instance.

Remarks

This method uses the level 3 BLAS routine ZHERK.

Exceptions

DimensionMismatchException

The number of rows of matrix does not equal the number of rows in this HermitianMatrix<T>.

See Also