UNPKG

nerdamer-ts

Version:

javascript light-weight symbolic math expression evaluator

12 lines 435 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.transpose = void 0; const Utils_1 = require("../../../../Core/Utils"); const Errors_1 = require("../../../../Core/Errors"); function transpose(mat) { if ((0, Utils_1.isMatrix)(mat)) return mat.transpose(); (0, Errors_1.err)('function transpose expects a matrix'); } exports.transpose = transpose; //# sourceMappingURL=transpose.js.map