mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
63 lines (61 loc) • 1.81 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createRow = void 0;
var _factory = require("../../utils/factory.js");
var _is = require("../../utils/is.js");
var _object = require("../../utils/object.js");
var _array = require("../../utils/array.js");
var name = 'row';
var dependencies = ['typed', 'Index', 'matrix', 'range'];
var createRow = exports.createRow = /* #__PURE__ */(0, _factory.factory)(name, dependencies, function (_ref) {
var typed = _ref.typed,
Index = _ref.Index,
matrix = _ref.matrix,
range = _ref.range;
/**
* Return a row from a Matrix.
*
* Syntax:
*
* math.row(value, index)
*
* Example:
*
* // get a row
* const d = [[1, 2], [3, 4]]
* math.row(d, 1) // returns [[3, 4]]
*
* See also:
*
* column
*
* @param {Array | Matrix } value An array or matrix
* @param {number} row The index of the row
* @return {Array | Matrix} The retrieved row
*/
return typed(name, {
'Matrix, number': _row,
'Array, number': function ArrayNumber(value, row) {
return _row(matrix((0, _object.clone)(value)), row).valueOf();
}
});
/**
* Retrieve a row of a matrix
* @param {Matrix } value A matrix
* @param {number} row The index of the row
* @return {Matrix} The retrieved row
*/
function _row(value, row) {
// check dimensions
if (value.size().length !== 2) {
throw new Error('Only two dimensional matrix is supported');
}
(0, _array.validateIndex)(row, value.size()[0]);
var columnRange = range(0, value.size()[1]);
var index = new Index(row, columnRange);
var result = value.subset(index);
return (0, _is.isMatrix)(result) ? result : matrix([[result]]);
}
});
;