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
55 lines (50 loc) • 1.62 kB
JavaScript
import { clone } from '../../utils/object'
import { squeeze as arraySqueeze } from '../../utils/array'
import { factory } from '../../utils/factory'
const name = 'squeeze'
const dependencies = ['typed', 'matrix']
export const createSqueeze = /* #__PURE__ */ factory(name, dependencies, ({ typed, matrix }) => {
/**
* Squeeze a matrix, remove inner and outer singleton dimensions from a matrix.
*
* Syntax:
*
* math.squeeze(x)
*
* Examples:
*
* math.squeeze([3]) // returns 3
* math.squeeze([[3]]) // returns 3
*
* const A = math.zeros(3, 1) // returns [[0], [0], [0]] (size 3x1)
* math.squeeze(A) // returns [0, 0, 0] (size 3)
*
* const B = math.zeros(1, 3) // returns [[0, 0, 0]] (size 1x3)
* math.squeeze(B) // returns [0, 0, 0] (size 3)
*
* // only inner and outer dimensions are removed
* const C = math.zeros(2, 1, 3) // returns [[[0, 0, 0]], [[0, 0, 0]]] (size 2x1x3)
* math.squeeze(C) // returns [[[0, 0, 0]], [[0, 0, 0]]] (size 2x1x3)
*
* See also:
*
* subset
*
* @param {Matrix | Array} x Matrix to be squeezed
* @return {Matrix | Array} Squeezed matrix
*/
return typed(name, {
Array: function (x) {
return arraySqueeze(clone(x))
},
Matrix: function (x) {
const res = arraySqueeze(x.toArray())
// FIXME: return the same type of matrix as the input
return Array.isArray(res) ? matrix(res) : res
},
any: function (x) {
// scalar
return clone(x)
}
})
})