123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- import { isBigNumber, isMatrix } from '../../utils/is.js';
- import { DimensionError } from '../../error/DimensionError.js';
- import { ArgumentsError } from '../../error/ArgumentsError.js';
- import { isInteger } from '../../utils/number.js';
- import { format } from '../../utils/string.js';
- import { clone } from '../../utils/object.js';
- import { resize as arrayResize } from '../../utils/array.js';
- import { factory } from '../../utils/factory.js';
- var name = 'resize';
- var dependencies = ['config', 'matrix'];
- export var createResize = /* #__PURE__ */factory(name, dependencies, _ref => {
- var {
- config,
- matrix
- } = _ref;
- /**
- * Resize a matrix
- *
- * Syntax:
- *
- * math.resize(x, size)
- * math.resize(x, size, defaultValue)
- *
- * Examples:
- *
- * math.resize([1, 2, 3, 4, 5], [3]) // returns Array [1, 2, 3]
- * math.resize([1, 2, 3], [5], 0) // returns Array [1, 2, 3, 0, 0]
- * math.resize(2, [2, 3], 0) // returns Matrix [[2, 0, 0], [0, 0, 0]]
- * math.resize("hello", [8], "!") // returns string 'hello!!!'
- *
- * See also:
- *
- * size, squeeze, subset, reshape
- *
- * @param {Array | Matrix | *} x Matrix to be resized
- * @param {Array | Matrix} size One dimensional array with numbers
- * @param {number | string} [defaultValue=0] Zero by default, except in
- * case of a string, in that case
- * defaultValue = ' '
- * @return {* | Array | Matrix} A resized clone of matrix `x`
- */
- // TODO: rework resize to a typed-function
- return function resize(x, size, defaultValue) {
- if (arguments.length !== 2 && arguments.length !== 3) {
- throw new ArgumentsError('resize', arguments.length, 2, 3);
- }
- if (isMatrix(size)) {
- size = size.valueOf(); // get Array
- }
- if (isBigNumber(size[0])) {
- // convert bignumbers to numbers
- size = size.map(function (value) {
- return !isBigNumber(value) ? value : value.toNumber();
- });
- }
- // check x is a Matrix
- if (isMatrix(x)) {
- // use optimized matrix implementation, return copy
- return x.resize(size, defaultValue, true);
- }
- if (typeof x === 'string') {
- // resize string
- return _resizeString(x, size, defaultValue);
- }
- // check result should be a matrix
- var asMatrix = Array.isArray(x) ? false : config.matrix !== 'Array';
- if (size.length === 0) {
- // output a scalar
- while (Array.isArray(x)) {
- x = x[0];
- }
- return clone(x);
- } else {
- // output an array/matrix
- if (!Array.isArray(x)) {
- x = [x];
- }
- x = clone(x);
- var res = arrayResize(x, size, defaultValue);
- return asMatrix ? matrix(res) : res;
- }
- };
- /**
- * Resize a string
- * @param {string} str
- * @param {number[]} size
- * @param {string} [defaultChar=' ']
- * @private
- */
- function _resizeString(str, size, defaultChar) {
- if (defaultChar !== undefined) {
- if (typeof defaultChar !== 'string' || defaultChar.length !== 1) {
- throw new TypeError('Single character expected as defaultValue');
- }
- } else {
- defaultChar = ' ';
- }
- if (size.length !== 1) {
- throw new DimensionError(size.length, 1);
- }
- var len = size[0];
- if (typeof len !== 'number' || !isInteger(len)) {
- throw new TypeError('Invalid size, must contain positive integers ' + '(size: ' + format(size) + ')');
- }
- if (str.length > len) {
- return str.substring(0, len);
- } else if (str.length < len) {
- var res = str;
- for (var i = 0, ii = len - str.length; i < ii; i++) {
- res += defaultChar;
- }
- return res;
- } else {
- return str;
- }
- }
- });
|