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
73 lines (63 loc) • 2 kB
JavaScript
'use strict'
const array = require('../../utils/array')
function factory (type, config, load, typed) {
const matrix = load(require('../../type/matrix/function/matrix'))
const isInteger = load(require('../utils/isInteger'))
/**
* Reshape a multi dimensional array to fit the specified dimensions
*
* Syntax:
*
* math.reshape(x, sizes)
*
* Examples:
*
* math.reshape([1, 2, 3, 4, 5, 6], [2, 3])
* // returns Array [[1, 2, 3], [4, 5, 6]]
*
* math.reshape([[1, 2], [3, 4]], [1, 4])
* // returns Array [[1, 2, 3, 4]]
*
* math.reshape([[1, 2], [3, 4]], [4])
* // returns Array [1, 2, 3, 4]
*
* const x = math.matrix([1, 2, 3, 4, 5, 6, 7, 8])
* math.reshape(x, [2, 2, 2])
* // returns Matrix [[[1, 2], [3, 4]], [[5, 6], [7, 8]]]
*
* See also:
*
* size, squeeze, resize
*
* @param {Array | Matrix | *} x Matrix to be reshaped
* @param {number[]} sizes One dimensional array with integral sizes for
* each dimension
*
* @return {* | Array | Matrix} A reshaped clone of matrix `x`
*
* @throws {TypeError} If `sizes` does not contain solely integers
* @throws {DimensionError} If the product of the new dimension sizes does
* not equal that of the old ones
*/
const reshape = typed('reshape', {
'Matrix, Array': function (x, sizes) {
if (x.reshape) {
return x.reshape(sizes)
} else {
return matrix(array.reshape(x.valueOf(), sizes))
}
},
'Array, Array': function (x, sizes) {
sizes.forEach(function (size) {
if (!isInteger(size)) {
throw new TypeError('Invalid size for dimension: ' + size)
}
})
return array.reshape(x, sizes)
}
})
reshape.toTex = undefined // use default template
return reshape
}
exports.name = 'reshape'
exports.factory = factory