UNPKG

enhancedmath

Version:

This package contains some enhanced mathematical operations

8 lines (7 loc) 262 B
/** * Recursively calculate the determinant of a matrix, making use of the minor matrix * @param matrix The matrix * @returns The determinant of the matrix */ declare const determinant: (matrix: number[][]) => number | undefined; export default determinant;