UNPKG

nerdamer-ts

Version:

javascript light-weight symbolic math expression evaluator

8 lines (7 loc) 182 B
/** * Returns an identity matrix of nxn * @param {Number} n * @returns {Matrix} */ export function imatrix(n: number): Matrix; import { Matrix } from "../../../../Types/Matrix";