Linear Operator<T>.Multiply As Left Core 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 | Multiplies a matrix by the linear operator and returns the result. |
Multiply | Multiplies a vector by the linear operator and returns the result. |
MultiplyAsLeftCore(TransposeOperation, Matrix<T>, Matrix<T>)
Multiplies a matrix by the linear operator and returns the result.
protected virtual Matrix<T> MultiplyAsLeftCore(
TransposeOperation transpose,
Matrix<T> right,
Matrix<T>? result
)
Parameters
- transpose TransposeOperation
- The operation to be performed on the operator before multiplying.
- right Matrix<T>
- The right operand of the multiplication.
- result Matrix<T>
- The vector that is to hold the result. May be null.
Return Value
Matrix<T>A vector that is the product of this matrix and right.
MultiplyAsLeftCore(TransposeOperation, Vector<T>, Vector<T>)
Multiplies a vector by the linear operator and returns the result.
protected abstract Vector<T> MultiplyAsLeftCore(
TransposeOperation transpose,
Vector<T> right,
Vector<T>? result
)
Parameters
- transpose TransposeOperation
- The operation to be performed on the operator before multiplying.
- right Vector<T>
- The right operand of the multiplication.
- result Vector<T>
- The vector that is to hold the result. May be null.
Return Value
Vector<T>A vector that is the product of this matrix and right.