2014-04-18 19:01:00 -04:00

72 lines
1.9 KiB
JavaScript

module.exports = function (math) {
var util = require('../../util/index'),
BigNumber = math.type.BigNumber,
Complex = require('../../type/Complex'),
Unit = require('../../type/Unit'),
collection = require('../../type/collection'),
isNumber = util.number.isNumber,
isBoolean = util['boolean'].isBoolean,
isComplex = Complex.isComplex,
isUnit = Unit.isUnit,
isCollection = collection.isCollection;
/**
* Calculate the hyperbolic tangent of a value
*
* tanh(x)
*
* For matrices, the function is evaluated element wise.
*
* @param {Number | Boolean | Complex | Unit | Array | Matrix} x
* @return {Number | Complex | Array | Matrix} res
*
* @see http://mathworld.wolfram.com/HyperbolicTangent.html
*/
math.tanh = function tanh(x) {
if (arguments.length != 1) {
throw new math.error.ArgumentsError('tanh', arguments.length, 1);
}
if (isNumber(x)) {
var e = Math.exp(2 * x);
return (e - 1) / (e + 1);
}
if (isComplex(x)) {
var r = Math.exp(2 * x.re);
var re = r * Math.cos(2 * x.im);
var im = r * Math.sin(2 * x.im);
var den = (re + 1) * (re + 1) + im * im;
return new Complex(
((re - 1) * (re + 1) + im * im) / den,
im * 2 / den
);
}
if (isUnit(x)) {
if (!x.hasBase(Unit.BASE_UNITS.ANGLE)) {
throw new TypeError ('Unit in function tanh is no angle');
}
return tanh(x.value);
}
if (isCollection(x)) {
return collection.deepMap(x, tanh);
}
if (isBoolean(x)) {
return tanh(x ? 1 : 0);
}
if (x instanceof BigNumber) {
// TODO: implement BigNumber support
// downgrade to Number
return tanh(x.toNumber());
}
throw new math.error.UnsupportedTypeError('tanh', math['typeof'](x));
};
};