UNPKG

enhancedmath

Version:

This package contains some enhanced mathematical operations

8 lines (7 loc) 225 B
/** * Calculates the inverse of a given matrix * @param matrix The matrix * @returns The inverse of the matrix */ declare const matrixInverse: (matrix: number[][]) => number[][] | undefined; export default matrixInverse;