UNPKG

enhancedmath

Version:

This package contains some enhanced mathematical operations

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