Inverts this matrix (if not singular): this = this^-1
oBoolean = SIMatrix3.InvertInPlace( m ); |
Boolean True if this matrix has been inverted (not singular); otherwise False.
Parameter | Type | Description |
---|---|---|
m | SIMatrix3 | Matrix operand |
dim m1 ' Create 3x3 matrix. set m1 = XSIMath.CreateMatrix3(2.0, 3.0, 0.0, 1.0, 4.0, 0.0, 0.0, 0.0, 1.0) if m1.InvertInPlace then 'do something else 'do another thing end if |