nerdamer-ts
Version:
javascript light-weight symbolic math expression evaluator
14 lines • 370 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.imatrix = void 0;
const Matrix_1 = require("../../../../Types/Matrix");
/**
* Returns an identity matrix of nxn
* @param {Number} n
* @returns {Matrix}
*/
function imatrix(n) {
return Matrix_1.Matrix.identity(n);
}
exports.imatrix = imatrix;
//# sourceMappingURL=imatrix.js.map