Click or drag to resize

LMatrixDivision(DVector, LMatrix) Operator

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

Namespace: Austra.Library
Assembly: Austra.Library (in Austra.Library.dll) Version: 2.7.0+b25929339ea1019e260029cf0ebd18b3a0ce2443
Syntax
C#
public static DVector operator /(
	DVector v,
	LMatrix m
)

Parameters

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

Return Value

DVector
The solving vector.
See Also