mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
118 lines
3.1 KiB
JavaScript
118 lines
3.1 KiB
JavaScript
'use strict';
|
|
|
|
var isInteger = require('../../utils/number').isInteger;
|
|
var bigBitXor = require('../../utils/bignumber/bitXor');
|
|
|
|
function factory (type, config, load, typed) {
|
|
var latex = require('../../utils/latex');
|
|
|
|
var matrix = load(require('../../type/matrix/function/matrix'));
|
|
|
|
var algorithm03 = load(require('../../type/matrix/utils/algorithm03'));
|
|
var algorithm07 = load(require('../../type/matrix/utils/algorithm07'));
|
|
var algorithm12 = load(require('../../type/matrix/utils/algorithm12'));
|
|
var algorithm13 = load(require('../../type/matrix/utils/algorithm13'));
|
|
var algorithm14 = load(require('../../type/matrix/utils/algorithm14'));
|
|
|
|
/**
|
|
* Bitwise XOR two values, `x ^ y`.
|
|
* For matrices, the function is evaluated element wise.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.bitXor(x, y)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.bitXor(1, 2); // returns number 3
|
|
*
|
|
* math.bitXor([2, 3, 4], 4); // returns Array [6, 7, 0]
|
|
*
|
|
* See also:
|
|
*
|
|
* bitAnd, bitNot, bitOr, leftShift, rightArithShift, rightLogShift
|
|
*
|
|
* @param {number | BigNumber | Array | Matrix} x First value to xor
|
|
* @param {number | BigNumber | Array | Matrix} y Second value to xor
|
|
* @return {number | BigNumber | Array | Matrix} XOR of `x` and `y`
|
|
*/
|
|
var bitXor = typed('bitXor', {
|
|
|
|
'number, number': function (x, y) {
|
|
if (!isInteger(x) || !isInteger(y)) {
|
|
throw new Error('Integers expected in function bitXor');
|
|
}
|
|
|
|
return x ^ y;
|
|
},
|
|
|
|
'BigNumber, BigNumber': bigBitXor,
|
|
|
|
'SparseMatrix, SparseMatrix': function(x, y) {
|
|
return algorithm07(x, y, bitXor);
|
|
},
|
|
|
|
'SparseMatrix, DenseMatrix': function(x, y) {
|
|
return algorithm03(y, x, bitXor, true);
|
|
},
|
|
|
|
'DenseMatrix, SparseMatrix': function(x, y) {
|
|
return algorithm03(x, y, bitXor, false);
|
|
},
|
|
|
|
'DenseMatrix, DenseMatrix': function(x, y) {
|
|
return algorithm13(x, y, bitXor);
|
|
},
|
|
|
|
'Array, Array': function (x, y) {
|
|
// use matrix implementation
|
|
return bitXor(matrix(x), matrix(y)).valueOf();
|
|
},
|
|
|
|
'Array, Matrix': function (x, y) {
|
|
// use matrix implementation
|
|
return bitXor(matrix(x), y);
|
|
},
|
|
|
|
'Matrix, Array': function (x, y) {
|
|
// use matrix implementation
|
|
return bitXor(x, matrix(y));
|
|
},
|
|
|
|
'SparseMatrix, any': function (x, y) {
|
|
return algorithm12(x, y, bitXor, false);
|
|
},
|
|
|
|
'DenseMatrix, any': function (x, y) {
|
|
return algorithm14(x, y, bitXor, false);
|
|
},
|
|
|
|
'any, SparseMatrix': function (x, y) {
|
|
return algorithm12(y, x, bitXor, true);
|
|
},
|
|
|
|
'any, DenseMatrix': function (x, y) {
|
|
return algorithm14(y, x, bitXor, true);
|
|
},
|
|
|
|
'Array, any': function (x, y) {
|
|
// use matrix implementation
|
|
return algorithm14(matrix(x), y, bitXor, false).valueOf();
|
|
},
|
|
|
|
'any, Array': function (x, y) {
|
|
// use matrix implementation
|
|
return algorithm14(matrix(y), x, bitXor, true).valueOf();
|
|
}
|
|
});
|
|
|
|
bitXor.toTex = {
|
|
2: '\\left(${args[0]}' + latex.operators['bitXor'] + '${args[1]}\\right)'
|
|
};
|
|
|
|
return bitXor;
|
|
}
|
|
|
|
exports.name = 'bitXor';
|
|
exports.factory = factory;
|