50 lines
1.2 KiB
JavaScript

module.exports = function (math) {
var util = require('../../util/index'),
Complex = require('../../type/Complex'),
Matrix = require('../../type/Matrix'),
collection = require('../../type/collection'),
isNumBool = util.number.isNumBool,
isComplex = Complex.isComplex,
isCollection = collection.isCollection;
/**
* Calculate the exponent of a value
*
* exp(x)
*
* For matrices, the function is evaluated element wise.
*
* @param {Number | Boolean | Complex | Array | Matrix} x
* @return {Number | Complex | Array | Matrix} res
*/
math.exp = function exp (x) {
if (arguments.length != 1) {
throw new util.error.ArgumentsError('exp', arguments.length, 1);
}
if (isNumBool(x)) {
return Math.exp(x);
}
if (isComplex(x)) {
var r = Math.exp(x.re);
return new Complex(
r * Math.cos(x.im),
r * Math.sin(x.im)
);
}
if (isCollection(x)) {
return collection.deepMap(x, exp);
}
if (x.valueOf() !== x) {
// fallback on the objects primitive value
return exp(x.valueOf());
}
throw new util.error.UnsupportedTypeError('exp', x);
};
};