Mat.adjugate

struct Mat(T, size_t rowCount, size_t colCount)
ref
static if(rowCount == colCount)
Mat!(T, N, N)
adjugate
()
if (
isNumeric!T &&
rowCount > 0
&&
colCount > 0
)

Return Value

Type: Mat!(T, N, N)

A reference to this matrix, for method chaining.

Meta