nerdamer-ts
Version:
javascript light-weight symbolic math expression evaluator
10 lines • 317 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.matrix = void 0;
const Matrix_1 = require("../../../../Types/Matrix");
//the constructor for matrices
function matrix() {
return Matrix_1.Matrix.fromArray(arguments);
}
exports.matrix = matrix;
//# sourceMappingURL=matrix.js.map