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

133 lines (113 loc) 4.01 kB
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 { rightLogShiftNumber } from '../../plain/number' const name = 'rightLogShift' const dependencies = [ 'typed', 'matrix', 'equalScalar', 'zeros', 'DenseMatrix' ] export const createRightLogShift = /* #__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 logical shift of 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.rightLogShift(x, y) * * Examples: * * math.rightLogShift(4, 2) // returns number 1 * * math.rightLogShift([16, -32, 64], 4) // returns Array [1, 2, 3] * * See also: * * bitAnd, bitNot, bitOr, bitXor, leftShift, rightLogShift * * @param {number | Array | Matrix} x Value to be shifted * @param {number} y Amount of shifts * @return {number | Array | Matrix} `x` zero-filled shifted right `y` times */ return typed(name, { 'number, number': rightLogShiftNumber, // 'BigNumber, BigNumber': ..., // TODO: implement BigNumber support for rightLogShift 'SparseMatrix, SparseMatrix': function (x, y) { return algorithm08(x, y, this, false) }, 'SparseMatrix, DenseMatrix': function (x, y) { return algorithm02(y, x, this, true) }, 'DenseMatrix, SparseMatrix': function (x, y) { return algorithm01(x, y, this, false) }, 'DenseMatrix, DenseMatrix': function (x, y) { return algorithm13(x, y, this) }, 'Array, Array': function (x, y) { // use matrix implementation return this(matrix(x), matrix(y)).valueOf() }, 'Array, Matrix': function (x, y) { // use matrix implementation return this(matrix(x), y) }, 'Matrix, Array': function (x, y) { // use matrix implementation return this(x, matrix(y)) }, 'SparseMatrix, number | BigNumber': function (x, y) { // check scalar if (equalScalar(y, 0)) { return x.clone() } return algorithm11(x, y, this, false) }, 'DenseMatrix, number | BigNumber': function (x, y) { // check scalar if (equalScalar(y, 0)) { return x.clone() } return algorithm14(x, y, this, false) }, 'number | BigNumber, SparseMatrix': function (x, y) { // check scalar if (equalScalar(x, 0)) { return zeros(y.size(), y.storage()) } return algorithm10(y, x, this, true) }, 'number | BigNumber, DenseMatrix': function (x, y) { // check scalar if (equalScalar(x, 0)) { return zeros(y.size(), y.storage()) } return algorithm14(y, x, this, true) }, 'Array, number | BigNumber': function (x, y) { // use matrix implementation return this(matrix(x), y).valueOf() }, 'number | BigNumber, Array': function (x, y) { // use matrix implementation return this(x, matrix(y)).valueOf() } }) })