Symmetric Matrix<T>.Subtract Outer Product Method
            
            Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.5
Overload List
| Subtract | Updates a symmetric matrix by subtracting the product of a matrix and its transpose. | 
| Subtract | Updates a symmetric matrix with the outer product of a vector and its transpose. | 
SubtractOuterProduct(Matrix<T>)
            Updates a symmetric matrix by subtracting the product
            of a matrix and its transpose.
            
public SymmetricMatrix<T> SubtractOuterProduct(
	Matrix<T> matrix
)Parameters
Return Value
SymmetricMatrix<T>A reference to this instance.
Remarks
This method uses the level 3 BLAS routine DSYRK.
Exceptions
| Dimension | The number of rows of matrix does not equal the number of rows in this SymmetricMatrix<T>.  | 
SubtractOuterProduct(Vector<T>)
            Updates a symmetric matrix with the outer product of
            a vector and its transpose.
            
public SymmetricMatrix<T> SubtractOuterProduct(
	Vector<T> vector
)Parameters
Return Value
SymmetricMatrix<T>A reference to this instance.
Exceptions
| Dimension | The length of vector does not equal the number of rows in this SymmetricMatrix<T>.  |