UNPKG

mathjs

Version:

Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser and offers an integrated solution to work with numbers, big numbers, complex numbers, units, and matrices.

53 lines (43 loc) 1.22 kB
module.exports = function (math) { var util = require('../../util/index'), BigNumber = math.type.BigNumber, Complex = require('../../type/Complex'), collection = require('../../type/collection'), object = util.object, isNumber = util.number.isNumber, isBoolean = util['boolean'].isBoolean, isCollection = collection.isCollection, isComplex = Complex.isComplex; /** * Get the real part of a complex number. * * re(x) * * For matrices, the function is evaluated element wise. * * @param {Number | BigNumber | Complex | Array | Matrix | Boolean} x * @return {Number | BigNumber | Array | Matrix} re */ math.re = function re(x) { if (arguments.length != 1) { throw new math.error.ArgumentsError('re', arguments.length, 1); } if (isNumber(x)) { return x; } if (x instanceof BigNumber) { return new BigNumber(x); } if (isComplex(x)) { return x.re; } if (isCollection(x)) { return collection.deepMap(x, re); } if (isBoolean(x)) { return +x; } // return a clone of the value itself for all non-complex values return object.clone(x); }; };