Matrix.Inverse3 Method

Computes the inverse of a 3x3 matrix.
Public Shared Function Inverse3( _ 
ByVal matrix As Double(,), _ 
ByRef inverse As Double(,) _ 
) As Boolean
This language is not supported or no code example is available.
public static bool Inverse3( 
double[,] matrix
out double[,] inverse 
)
This language is not supported or no code example is available.

Parameters

matrix
double[,]

The matrix

inverse
double[,]

The inverse matrix

Return Value

bool

True if the operation succeeded, false otherwise.

.NET Framework

Supported in: 4.8

In this article

Definition