Linear Operator<T>.Multiply Transpose Method
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Multiply | Applies the transpose of the linear operator to a matrix. |
Multiply | Applies the (conjugate) transpose of the linear operator to a vector. |
MultiplyTranspose(Matrix<T>)
Applies the transpose of the linear operator to a matrix.
public Matrix<T> MultiplyTranspose(
Matrix<T> matrix
)
Parameters
Return Value
Matrix<T>The product of the transpose of the linear operator and matrix.
Exceptions
Argument | matrix is null. |
Dimension | The number of rows of matrix does not equal the number of rows in the linear operator. |
MultiplyTranspose(Vector<T>)
Applies the (conjugate) transpose of the linear operator to a vector.
public Vector<T> MultiplyTranspose(
Vector<T> vector
)
Parameters
Return Value
Vector<T>The product of the conjugate transpose of the linear operator and vector.
Exceptions
Argument | vector is null. |
Dimension | The length of vector does not equal the number of rows in the linear operator. |