Matrix.Inverse4 (Double(,)) Method

Computes the inverse of a 4x4 matrix without checking if the determinant is zero.
Public Shared Function Inverse4( _ 
ByVal a As Double(,) _ 
) As Double(,)
This language is not supported or no code example is available.
public static double[,] Inverse4( 
double[,] a 
)
This language is not supported or no code example is available.

Parameters

a
double[,]

The matrix

Return Value

double[,]

The inverted matrix.

.NET Framework

Supported in: 4.8

In this article

Definition