jiangchengfeiyi-xiaochengxu/node_modules/mathjs/lib/cjs/utils/switch.js
2025-01-02 11:13:50 +08:00

26 lines
449 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports._switch = _switch;
/**
* Transpose a matrix
* @param {Array} mat
* @returns {Array} ret
* @private
*/
function _switch(mat) {
const I = mat.length;
const J = mat[0].length;
let i, j;
const ret = [];
for (j = 0; j < J; j++) {
const tmp = [];
for (i = 0; i < I; i++) {
tmp.push(mat[i][j]);
}
ret.push(tmp);
}
return ret;
}