mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
158 lines
4.3 KiB
JavaScript
158 lines
4.3 KiB
JavaScript
'use strict';
|
|
|
|
var isInteger = require('../../util/number').isInteger;
|
|
|
|
function factory (type, config, load, typed) {
|
|
|
|
var matrix = load(require('../../type/matrix/function/matrix'));
|
|
var equalScalar = load(require('../relational/equalScalar'));
|
|
var zeros = load(require('../matrix/zeros'));
|
|
|
|
var algorithm01 = load(require('../../type/matrix/util/algorithm01'));
|
|
var algorithm02 = load(require('../../type/matrix/util/algorithm02'));
|
|
var algorithm08 = load(require('../../type/matrix/util/algorithm08'));
|
|
var algorithm10 = load(require('../../type/matrix/util/algorithm10'));
|
|
var algorithm11 = load(require('../../type/matrix/util/algorithm11'));
|
|
var algorithm13 = load(require('../../type/matrix/util/algorithm13'));
|
|
var algorithm14 = load(require('../../type/matrix/util/algorithm14'));
|
|
|
|
/**
|
|
* 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
|
|
*/
|
|
|
|
var rightLogShift = typed('rightLogShift', {
|
|
|
|
'number, number': function (x, y) {
|
|
if (!isInteger(x) || !isInteger(y)) {
|
|
throw new Error('Integers expected in function rightLogShift');
|
|
}
|
|
|
|
return x >>> y;
|
|
},
|
|
|
|
// 'BigNumber, BigNumber': ..., // TODO: implement BigNumber support for rightLogShift
|
|
|
|
'Matrix, Matrix': function (x, y) {
|
|
// result
|
|
var c;
|
|
|
|
// process matrix storage
|
|
switch (x.storage()) {
|
|
case 'sparse':
|
|
switch (y.storage()) {
|
|
case 'sparse':
|
|
// sparse & sparse
|
|
c = algorithm08(x, y, rightLogShift, false);
|
|
break;
|
|
default:
|
|
// sparse & dense
|
|
c = algorithm02(y, x, rightLogShift, true);
|
|
break;
|
|
}
|
|
break;
|
|
default:
|
|
switch (y.storage()) {
|
|
case 'sparse':
|
|
// dense & sparse
|
|
c = algorithm01(x, y, rightLogShift, false);
|
|
break;
|
|
default:
|
|
// dense & dense
|
|
c = algorithm13(x, y, rightLogShift);
|
|
break;
|
|
}
|
|
break;
|
|
}
|
|
return c;
|
|
},
|
|
|
|
'Array, Array': function (x, y) {
|
|
// use matrix implementation
|
|
return rightLogShift(matrix(x), matrix(y)).valueOf();
|
|
},
|
|
|
|
'Array, Matrix': function (x, y) {
|
|
// use matrix implementation
|
|
return rightLogShift(matrix(x), y);
|
|
},
|
|
|
|
'Matrix, Array': function (x, y) {
|
|
// use matrix implementation
|
|
return rightLogShift(x, matrix(y));
|
|
},
|
|
|
|
'Matrix, number | BigNumber': function (x, y) {
|
|
// check scalar
|
|
if (!equalScalar(y, 0)) {
|
|
// result
|
|
var c;
|
|
// check storage format
|
|
switch (x.storage()) {
|
|
case 'sparse':
|
|
c = algorithm11(x, y, rightLogShift, false);
|
|
break;
|
|
default:
|
|
c = algorithm14(x, y, rightLogShift, false);
|
|
break;
|
|
}
|
|
return c;
|
|
}
|
|
return x.clone();
|
|
},
|
|
|
|
'number | BigNumber, Matrix': function (x, y) {
|
|
// check scalar
|
|
if (!equalScalar(x, 0)) {
|
|
// result
|
|
var c;
|
|
// check storage format
|
|
switch (y.storage()) {
|
|
case 'sparse':
|
|
c = algorithm10(y, x, rightLogShift, true);
|
|
break;
|
|
default:
|
|
c = algorithm14(y, x, rightLogShift, true);
|
|
break;
|
|
}
|
|
return c;
|
|
}
|
|
return zeros(y.size(), y.storage());
|
|
},
|
|
|
|
'Array, number | BigNumber': function (x, y) {
|
|
// use matrix implementation
|
|
return rightLogShift(matrix(x), y).valueOf();
|
|
},
|
|
|
|
'number | BigNumber, Array': function (x, y) {
|
|
// use matrix implementation
|
|
return rightLogShift(x, matrix(y)).valueOf();
|
|
}
|
|
});
|
|
|
|
return rightLogShift;
|
|
}
|
|
|
|
exports.name = 'rightLogShift';
|
|
exports.factory = factory;
|