Click or drag to resize

LMatrixMultiply(RMatrix, LMatrix) Operator

Multiplies an upper-triangular matrix with a lower-triangular one.

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.8.0+892c66cd78254e5a7ad663c063da400b3042cf5b
Syntax
C#
public static Matrix operator *(
	RMatrix m1,
	LMatrix m2
)

Parameters

m1  RMatrix
First matrix.
m2  LMatrix
Second matrix.

Return Value

Matrix
The product of the two operands.
See Also