jiangchengfeiyi-xiaochengxu/node_modules/mathjs/lib/cjs/function/matrix/range.js

237 lines
8.6 KiB
JavaScript
Raw Normal View History

2025-01-02 03:13:50 +00:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createRange = void 0;
var _factory = require("../../utils/factory.js");
var _noop = require("../../utils/noop.js");
const name = 'range';
const dependencies = ['typed', 'config', '?matrix', '?bignumber', 'smaller', 'smallerEq', 'larger', 'largerEq', 'add', 'isPositive'];
const createRange = exports.createRange = /* #__PURE__ */(0, _factory.factory)(name, dependencies, _ref => {
let {
typed,
config,
matrix,
bignumber,
smaller,
smallerEq,
larger,
largerEq,
add,
isPositive
} = _ref;
/**
* Create an array from a range.
* By default, the range end is excluded. This can be customized by providing
* an extra parameter `includeEnd`.
*
* Syntax:
*
* math.range(str [, includeEnd]) // Create a range from a string,
* // where the string contains the
* // start, optional step, and end,
* // separated by a colon.
* math.range(start, end [, includeEnd]) // Create a range with start and
* // end and a step size of 1.
* math.range(start, end, step [, includeEnd]) // Create a range with start, step,
* // and end.
*
* Where:
*
* - `str: string`
* A string 'start:end' or 'start:step:end'
2025-04-05 08:12:09 +00:00
* - `start: {number | bigint | BigNumber | Fraction | Unit}`
2025-01-02 03:13:50 +00:00
* Start of the range
2025-04-05 08:12:09 +00:00
* - `end: number | bigint | BigNumber | Fraction | Unit`
2025-01-02 03:13:50 +00:00
* End of the range, excluded by default, included when parameter includeEnd=true
2025-04-05 08:12:09 +00:00
* - `step: number | bigint | BigNumber | Fraction | Unit`
2025-01-02 03:13:50 +00:00
* Step size. Default value is 1.
* - `includeEnd: boolean`
* Option to specify whether to include the end or not. False by default.
*
2025-04-05 08:12:09 +00:00
* Note that the return type of the range is taken from the type of
* the start/end. If only one these is a built-in `number` type, it will
* be promoted to the type of the other endpoint. However, in the case of
* Unit values, both endpoints must have compatible units, and the return
* value will have compatible units as well.
*
2025-01-02 03:13:50 +00:00
* Examples:
*
* math.range(2, 6) // [2, 3, 4, 5]
* math.range(2, -3, -1) // [2, 1, 0, -1, -2]
* math.range('2:1:6') // [2, 3, 4, 5]
* math.range(2, 6, true) // [2, 3, 4, 5, 6]
2025-04-05 08:12:09 +00:00
* math.range(2, math.fraction(8,3), math.fraction(1,3)) // [fraction(2), fraction(7,3)]
2025-01-02 03:13:50 +00:00
* math.range(math.unit(2, 'm'), math.unit(-3, 'm'), math.unit(-1, 'm')) // [2 m, 1 m, 0 m , -1 m, -2 m]
*
* See also:
*
* ones, zeros, size, subset
*
2025-04-05 08:12:09 +00:00
* @param {*} args Parameters describing the range's `start`, `end`, and optional `step`.
2025-01-02 03:13:50 +00:00
* @return {Array | Matrix} range
*/
return typed(name, {
// TODO: simplify signatures when typed-function supports default values and optional arguments
string: _strRange,
'string, boolean': _strRange,
2025-04-05 08:12:09 +00:00
number: function (oops) {
throw new TypeError(`Too few arguments to function range(): ${oops}`);
},
boolean: function (oops) {
throw new TypeError(`Unexpected type of argument 1 to function range(): ${oops}, number|bigint|BigNumber|Fraction`);
},
2025-01-02 03:13:50 +00:00
'number, number': function (start, end) {
return _out(_range(start, end, 1, false));
},
'number, number, number': function (start, end, step) {
return _out(_range(start, end, step, false));
},
'number, number, boolean': function (start, end, includeEnd) {
return _out(_range(start, end, 1, includeEnd));
},
'number, number, number, boolean': function (start, end, step, includeEnd) {
return _out(_range(start, end, step, includeEnd));
},
2025-04-05 08:12:09 +00:00
// Handle bigints; if either limit is bigint, range should be too
'bigint, bigint|number': function (start, end) {
return _out(_range(start, end, 1n, false));
},
'number, bigint': function (start, end) {
return _out(_range(BigInt(start), end, 1n, false));
},
'bigint, bigint|number, bigint|number': function (start, end, step) {
return _out(_range(start, end, BigInt(step), false));
},
'number, bigint, bigint|number': function (start, end, step) {
return _out(_range(BigInt(start), end, BigInt(step), false));
},
'bigint, bigint|number, boolean': function (start, end, includeEnd) {
return _out(_range(start, end, 1n, includeEnd));
},
'number, bigint, boolean': function (start, end, includeEnd) {
return _out(_range(BigInt(start), end, 1n, includeEnd));
},
'bigint, bigint|number, bigint|number, boolean': function (start, end, step, includeEnd) {
return _out(_range(start, end, BigInt(step), includeEnd));
},
'number, bigint, bigint|number, boolean': function (start, end, step, includeEnd) {
return _out(_range(BigInt(start), end, BigInt(step), includeEnd));
},
2025-01-02 03:13:50 +00:00
'BigNumber, BigNumber': function (start, end) {
const BigNumber = start.constructor;
return _out(_range(start, end, new BigNumber(1), false));
},
'BigNumber, BigNumber, BigNumber': function (start, end, step) {
return _out(_range(start, end, step, false));
},
'BigNumber, BigNumber, boolean': function (start, end, includeEnd) {
const BigNumber = start.constructor;
return _out(_range(start, end, new BigNumber(1), includeEnd));
},
'BigNumber, BigNumber, BigNumber, boolean': function (start, end, step, includeEnd) {
return _out(_range(start, end, step, includeEnd));
},
2025-04-05 08:12:09 +00:00
'Fraction, Fraction': function (start, end) {
return _out(_range(start, end, 1, false));
},
'Fraction, Fraction, Fraction': function (start, end, step) {
return _out(_range(start, end, step, false));
},
'Fraction, Fraction, boolean': function (start, end, includeEnd) {
return _out(_range(start, end, 1, includeEnd));
},
'Fraction, Fraction, Fraction, boolean': function (start, end, step, includeEnd) {
return _out(_range(start, end, step, includeEnd));
},
2025-01-02 03:13:50 +00:00
'Unit, Unit, Unit': function (start, end, step) {
return _out(_range(start, end, step, false));
},
'Unit, Unit, Unit, boolean': function (start, end, step, includeEnd) {
return _out(_range(start, end, step, includeEnd));
}
});
function _out(arr) {
if (config.matrix === 'Matrix') {
return matrix ? matrix(arr) : (0, _noop.noMatrix)();
}
return arr;
}
function _strRange(str, includeEnd) {
const r = _parse(str);
if (!r) {
throw new SyntaxError('String "' + str + '" is no valid range');
}
if (config.number === 'BigNumber') {
if (bignumber === undefined) {
(0, _noop.noBignumber)();
}
return _out(_range(bignumber(r.start), bignumber(r.end), bignumber(r.step)), includeEnd);
} else {
return _out(_range(r.start, r.end, r.step, includeEnd));
}
}
/**
* Create a range with numbers or BigNumbers
* @param {number | BigNumber | Unit} start
* @param {number | BigNumber | Unit} end
* @param {number | BigNumber | Unit} step
* @param {boolean} includeEnd
* @returns {Array} range
* @private
*/
function _range(start, end, step, includeEnd) {
const array = [];
const ongoing = isPositive(step) ? includeEnd ? smallerEq : smaller : includeEnd ? largerEq : larger;
let x = start;
while (ongoing(x, end)) {
array.push(x);
x = add(x, step);
}
return array;
}
/**
* Parse a string into a range,
* The string contains the start, optional step, and end, separated by a colon.
* If the string does not contain a valid range, null is returned.
* For example str='0:2:11'.
* @param {string} str
* @return {{start: number, end: number, step: number} | null} range Object containing properties start, end, step
* @private
*/
function _parse(str) {
const args = str.split(':');
// number
const nums = args.map(function (arg) {
// use Number and not parseFloat as Number returns NaN on invalid garbage in the string
return Number(arg);
});
const invalid = nums.some(function (num) {
return isNaN(num);
});
if (invalid) {
return null;
}
switch (nums.length) {
case 2:
return {
start: nums[0],
end: nums[1],
step: 1
};
case 3:
return {
start: nums[0],
end: nums[2],
step: nums[1]
};
default:
return null;
}
}
});