Note: This API is now obsolete.
Multiplies a matrix on the left by this matrix.
Namespace:
Extreme.Mathematics.LinearAlgebra
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[ObsoleteAttribute("Use the static Multiply method instead.")]
public Matrix<T> Multiply(
TransposeOperation operation,
Matrix<T> matrix
)
<ObsoleteAttribute("Use the static Multiply method instead.")>
Public Function Multiply (
operation As TransposeOperation,
matrix As Matrix(Of T)
) As Matrix(Of T)
public:
[ObsoleteAttribute(L"Use the static Multiply method instead.")]
Matrix<T>^ Multiply(
TransposeOperation operation,
Matrix<T>^ matrix
)
[<ObsoleteAttribute("Use the static Multiply method instead.")>]
member Multiply :
operation : TransposeOperation *
matrix : Matrix<'T> -> Matrix<'T>
Parameters
- operation
- Type: Extreme.MathematicsTransposeOperation
The operation to be performed on this instance before multiplying. - matrix
- Type: Extreme.MathematicsMatrixT
The right operand of the multiplication.
Return Value
Type:
MatrixTA matrix that is the product of this instace, transformed as specified by
operation, and
matrix.
Reference