UNPKG

enhancedmath

Version:

This package contains some enhanced mathematical operations

8 lines (7 loc) 222 B
/** * Returns the transposed matrix * @param {Array<any[]>} matrix A 2d array * @returns {Array<any[]>} The transposed matrix */ declare const transpose: <T>(matrix: T[][]) => (T | null)[][]; export default transpose;