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) 138 B
const composeMatrix = (nRows = 3, nCols = 3, filler = 1) => Array(nRows).fill(Array(nCols).fill(filler)); module.exports = composeMatrix;