Symmetric Matrix<T>.Add Outer Product Method
Definition
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Add | Updates a symmetric matrix with the product of a matrix and its transpose. |
Add | Updates a symmetric matrix with the outer product of a vector and itself. |
Add | Updates a symmetric matrix with the scaled outer product of a matrix and its transpose. |
Add | Updates a symmetric matrix with the scaled outer product of a vector and its transpose. |
AddOuterProduct(Matrix<T>)
public SymmetricMatrix<T> AddOuterProduct(
Matrix<T> matrix
)
Parameters
Return Value
SymmetricMatrix<T>A reference to this instance.
Remarks
The number of rows of matrix must equal the number of rows and columns of this instance.
This method uses the level 3 BLAS routine DSYRK.
Exceptions
Argument | matrix is null. |
Dimension | The number of rows of matrix does not equal the number of rows in this SymmetricMatrix<T>. |
AddOuterProduct(Vector<T>)
public SymmetricMatrix<T> AddOuterProduct(
Vector<T> vector
)
Parameters
Return Value
SymmetricMatrix<T>A reference to this instance
Remarks
The length of vector must equal the number of rows and columns of this instance.
This method uses the level 2 BLAS routine DSYR.
Exceptions
Dimension | The length of vector does not equal the number of rows and columns in this SymmetricMatrix<T>. |
AddOuterProduct(T, Matrix<T>)
public SymmetricMatrix<T> AddOuterProduct(
T factor,
Matrix<T> matrix
)
Parameters
Return Value
SymmetricMatrix<T>A reference to this instance.
Remarks
The number of rows of matrix must equal the number of rows and columns of this instance.
This method uses the level 3 BLAS routine DSYRK.
Exceptions
Argument | matrix is null. |
Dimension | The number of rows of matrix does not equal the number of rows in this SymmetricMatrix<T>. |
AddOuterProduct(T, Vector<T>)
public SymmetricMatrix<T> AddOuterProduct(
T factor,
Vector<T> vector
)
Parameters
Return Value
SymmetricMatrix<T>A reference to this instance.
Remarks
The length of vector must equal the number of rows and columns of this instance.
This method uses the level 2 BLAS routine DSYR.
Exceptions
Argument | vector is null. |
Dimension | The length of vector does not equal the number of rows in this SymmetricMatrix<T>. |