UNPKG

@mojir/lits

Version:

Lits is a pure functional programming language implemented in TypeScript

7 lines (6 loc) 248 B
/** * Calculate the inverse of a matrix using the adjugate method * @param matrix The input matrix * @returns The inverse matrix or null if the matrix is not invertible */ export declare function inverse(matrix: number[][]): number[][] | null;