UNPKG

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

135 lines (115 loc) 4.29 kB
import { rightArithShiftBigNumber } from '../../utils/bignumber/bitwise' import { createAlgorithm02 } from '../../type/matrix/utils/algorithm02' import { createAlgorithm11 } from '../../type/matrix/utils/algorithm11' import { createAlgorithm13 } from '../../type/matrix/utils/algorithm13' import { createAlgorithm14 } from '../../type/matrix/utils/algorithm14' import { createAlgorithm01 } from '../../type/matrix/utils/algorithm01' import { createAlgorithm10 } from '../../type/matrix/utils/algorithm10' import { createAlgorithm08 } from '../../type/matrix/utils/algorithm08' import { factory } from '../../utils/factory' import { rightArithShiftNumber } from '../../plain/number' const name = 'rightArithShift' const dependencies = [ 'typed', 'matrix', 'equalScalar', 'zeros', 'DenseMatrix' ] export const createRightArithShift = /* #__PURE__ */ factory(name, dependencies, ({ typed, matrix, equalScalar, zeros, DenseMatrix }) => { const algorithm01 = createAlgorithm01({ typed }) const algorithm02 = createAlgorithm02({ typed, equalScalar }) const algorithm08 = createAlgorithm08({ typed, equalScalar }) const algorithm10 = createAlgorithm10({ typed, DenseMatrix }) const algorithm11 = createAlgorithm11({ typed, equalScalar }) const algorithm13 = createAlgorithm13({ typed }) const algorithm14 = createAlgorithm14({ typed }) /** * Bitwise right arithmetic shift of a value x by y number of bits, `x >> y`. * For matrices, the function is evaluated element wise. * For units, the function is evaluated on the best prefix base. * * Syntax: * * math.rightArithShift(x, y) * * Examples: * * math.rightArithShift(4, 2) // returns number 1 * * math.rightArithShift([16, -32, 64], 4) // returns Array [1, -2, 3] * * See also: * * bitAnd, bitNot, bitOr, bitXor, rightArithShift, rightLogShift * * @param {number | BigNumber | Array | Matrix} x Value to be shifted * @param {number | BigNumber} y Amount of shifts * @return {number | BigNumber | Array | Matrix} `x` sign-filled shifted right `y` times */ const rightArithShift = typed(name, { 'number, number': rightArithShiftNumber, 'BigNumber, BigNumber': rightArithShiftBigNumber, 'SparseMatrix, SparseMatrix': function (x, y) { return algorithm08(x, y, rightArithShift, false) }, 'SparseMatrix, DenseMatrix': function (x, y) { return algorithm02(y, x, rightArithShift, true) }, 'DenseMatrix, SparseMatrix': function (x, y) { return algorithm01(x, y, rightArithShift, false) }, 'DenseMatrix, DenseMatrix': function (x, y) { return algorithm13(x, y, rightArithShift) }, 'Array, Array': function (x, y) { // use matrix implementation return rightArithShift(matrix(x), matrix(y)).valueOf() }, 'Array, Matrix': function (x, y) { // use matrix implementation return rightArithShift(matrix(x), y) }, 'Matrix, Array': function (x, y) { // use matrix implementation return rightArithShift(x, matrix(y)) }, 'SparseMatrix, number | BigNumber': function (x, y) { // check scalar if (equalScalar(y, 0)) { return x.clone() } return algorithm11(x, y, rightArithShift, false) }, 'DenseMatrix, number | BigNumber': function (x, y) { // check scalar if (equalScalar(y, 0)) { return x.clone() } return algorithm14(x, y, rightArithShift, false) }, 'number | BigNumber, SparseMatrix': function (x, y) { // check scalar if (equalScalar(x, 0)) { return zeros(y.size(), y.storage()) } return algorithm10(y, x, rightArithShift, true) }, 'number | BigNumber, DenseMatrix': function (x, y) { // check scalar if (equalScalar(x, 0)) { return zeros(y.size(), y.storage()) } return algorithm14(y, x, rightArithShift, true) }, 'Array, number | BigNumber': function (x, y) { // use matrix implementation return rightArithShift(matrix(x), y).valueOf() }, 'number | BigNumber, Array': function (x, y) { // use matrix implementation return rightArithShift(x, matrix(y)).valueOf() } }) return rightArithShift })