Divide a matrix by another.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public static FloatMatrix operator /(
	FloatMatrix A,
	FloatMatrix B
)
Visual Basic (Declaration)
Public Shared Operator / ( _
	A As FloatMatrix, _
	B As FloatMatrix _
) As FloatMatrix
Visual C++
public:
static FloatMatrix^ operator /(
	FloatMatrix^ A, 
	FloatMatrix^ B
)

Return Value

A matrix C where C[i,j] = A[i,j] / B[i,j].

Exceptions

ExceptionCondition
CenterSpace.NMath.Core..::.MismatchedSizeExceptionThrown if the two matrices do not have the same dimensions.

See Also