UNPKG

enhancedmath

Version:

This package contains some enhanced mathematical operations

8 lines (7 loc) 216 B
/** * Calculates the matrix product of 2 matrices * @param A Matrix a * @param B Matrix b */ declare const matrix_product: (A: number[][], B: number[][]) => number[][] | undefined; export default matrix_product;