RMatrixDivision(DVector, RMatrix) Operator

Solves the equation m*x = v for the vector x.

Definition

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.5.0+d1268756e036101f601080f153b3997e72fc912d
C#
public static DVector operator /(
	DVector v,
	RMatrix m
)

Parameters

v  DVector
The vector at the right side.
m  RMatrix
The matrix at the left side.

Return Value

DVector
The solving vector.

See Also