mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
179 lines
4.9 KiB
JavaScript
179 lines
4.9 KiB
JavaScript
'use strict';
|
|
|
|
var isInteger = require('../../util/number').isInteger;
|
|
var toFixed = require('../../util/number').toFixed;
|
|
|
|
var NO_INT = 'Number of decimals in function round must be an integer';
|
|
|
|
function factory (type, config, load, typed) {
|
|
|
|
var collection = load(require('../../type/matrix/collection'));
|
|
var matrix = load(require('../../type/matrix/function/matrix'));
|
|
var equalScalar = load(require('../relational/equalScalar'));
|
|
var zeros = load(require('../matrix/zeros'));
|
|
|
|
var algorithm11 = load(require('../../type/matrix/util/algorithm11'));
|
|
var algorithm12 = load(require('../../type/matrix/util/algorithm12'));
|
|
var algorithm14 = load(require('../../type/matrix/util/algorithm14'));
|
|
|
|
/**
|
|
* Round a value towards the nearest integer.
|
|
* For matrices, the function is evaluated element wise.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.round(x)
|
|
* math.round(x, n)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.round(3.2); // returns number 3
|
|
* math.round(3.8); // returns number 4
|
|
* math.round(-4.2); // returns number -4
|
|
* math.round(-4.7); // returns number -5
|
|
* math.round(math.pi, 3); // returns number 3.142
|
|
* math.round(123.45678, 2); // returns number 123.46
|
|
*
|
|
* var c = math.complex(3.2, -2.7);
|
|
* math.round(c); // returns Complex 3 - 3i
|
|
*
|
|
* math.round([3.2, 3.8, -4.7]); // returns Array [3, 4, -5]
|
|
*
|
|
* See also:
|
|
*
|
|
* ceil, fix, floor
|
|
*
|
|
* @param {number | BigNumber | Fraction | Complex | Array | Matrix} x Number to be rounded
|
|
* @param {number | BigNumber | Array} [n=0] Number of decimals
|
|
* @return {number | BigNumber | Fraction | Complex | Array | Matrix} Rounded value
|
|
*/
|
|
var round = typed('round', {
|
|
|
|
'number': Math.round,
|
|
|
|
'number, number': function (x, n) {
|
|
if (!isInteger(n)) {throw new TypeError(NO_INT);}
|
|
if (n < 0 || n > 15) {throw new Error('Number of decimals in function round must be in te range of 0-15');}
|
|
|
|
return _round(x, n);
|
|
},
|
|
|
|
'Complex': function (x) {
|
|
return new type.Complex (
|
|
Math.round(x.re),
|
|
Math.round(x.im)
|
|
);
|
|
},
|
|
|
|
'Complex, number': function (x, n) {
|
|
return new type.Complex (
|
|
_round(x.re, n),
|
|
_round(x.im, n)
|
|
);
|
|
},
|
|
|
|
'Complex, BigNumber': function (x, n) {
|
|
if (!n.isInteger()) {throw new TypeError(NO_INT);}
|
|
|
|
var _n = n.toNumber();
|
|
return new type.Complex (
|
|
_round(x.re, _n),
|
|
_round(x.im, _n)
|
|
);
|
|
},
|
|
|
|
'number, BigNumber': function (x, n) {
|
|
if (!n.isInteger()) {throw new TypeError(NO_INT);}
|
|
|
|
return new type.BigNumber(x).toDecimalPlaces(n.toNumber());
|
|
},
|
|
|
|
'BigNumber': function (x) {
|
|
return x.toDecimalPlaces(0);
|
|
},
|
|
|
|
'BigNumber, BigNumber': function (x, n) {
|
|
if (!n.isInteger()) {throw new TypeError(NO_INT);}
|
|
|
|
return x.toDecimalPlaces(n.toNumber());
|
|
},
|
|
|
|
'Fraction': function (x) {
|
|
return x.round();
|
|
},
|
|
// TODO: add support for math.round(Fraction, Fraction | number)
|
|
|
|
'Array | Matrix': function (x) {
|
|
// deep map collection, skip zeros since round(0) = 0
|
|
return collection.deepMap(x, round, true);
|
|
},
|
|
|
|
'Matrix, number | BigNumber': function (x, y) {
|
|
// result
|
|
var c;
|
|
// check storage format
|
|
switch (x.storage()) {
|
|
case 'sparse':
|
|
c = algorithm11(x, y, round, false);
|
|
break;
|
|
default:
|
|
c = algorithm14(x, y, round, false);
|
|
break;
|
|
}
|
|
return c;
|
|
},
|
|
|
|
'number | Complex | BigNumber, Matrix': function (x, y) {
|
|
// check scalar is zero
|
|
if (!equalScalar(x, 0)) {
|
|
// result
|
|
var c;
|
|
// check storage format
|
|
switch (y.storage()) {
|
|
case 'sparse':
|
|
c = algorithm12(y, x, round, true);
|
|
break;
|
|
default:
|
|
c = algorithm14(y, x, round, true);
|
|
break;
|
|
}
|
|
return c;
|
|
}
|
|
// do not execute algorithm, result will be a zero matrix
|
|
return zeros(y.size(), y.storage());
|
|
},
|
|
|
|
'Array, number | BigNumber': function (x, y) {
|
|
// use matrix implementation
|
|
return algorithm14(matrix(x), y, round, false).valueOf();
|
|
},
|
|
|
|
'number | Complex | BigNumber, Array': function (x, y) {
|
|
// use matrix implementation
|
|
return algorithm14(matrix(y), x, round, true).valueOf();
|
|
}
|
|
});
|
|
|
|
round.toTex = {
|
|
1: '\\left\\lfloor${args[0]}\\right\\rceil',
|
|
2: '\\mathrm{${name}}\\left(${args}\\right)'
|
|
};
|
|
|
|
return round;
|
|
}
|
|
|
|
/**
|
|
* round a number to the given number of decimals, or to zero if decimals is
|
|
* not provided
|
|
* @param {number} value
|
|
* @param {number} decimals number of decimals, between 0 and 15 (0 by default)
|
|
* @return {number} roundedValue
|
|
* @private
|
|
*/
|
|
function _round (value, decimals) {
|
|
return parseFloat(toFixed(value, decimals));
|
|
}
|
|
|
|
exports.name = 'round';
|
|
exports.factory = factory;
|