UNPKG

nyo

Version:

A matrix library for JavaScript with ability to calculate determinants, transpose, inverse, RREF and other simple matrix operations

3 lines (2 loc) 119 B
const isNumericMatrix = (mat) => mat.flat().every((val) => typeof val === "number"); module.exports = isNumericMatrix;