mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
82 lines
2.1 KiB
JavaScript
82 lines
2.1 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 secant of a value,
|
|
* defined as `sech(x) = 1 / cosh(x)`.
|
|
*
|
|
* For matrices, the function is evaluated element wise.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.sech(x)
|
|
*
|
|
* Examples:
|
|
*
|
|
* var math = mathjs();
|
|
*
|
|
* // sech(x) = 1/ cosh(x)
|
|
* math.sech(0.5); // returns 0.886818883970074
|
|
* 1 / math.cosh(0.5); // returns 1.9190347513349437
|
|
*
|
|
* See also:
|
|
*
|
|
* cosh, csch, coth
|
|
*
|
|
* @param {Number | Boolean | Complex | Unit | Array | Matrix} x Function input
|
|
* @return {Number | Complex | Array | Matrix} Hyperbolic secant of x
|
|
*/
|
|
math.sech = function sech(x) {
|
|
if (arguments.length != 1) {
|
|
throw new math.error.ArgumentsError('sech', arguments.length, 1);
|
|
}
|
|
|
|
if (isNumber(x)) {
|
|
return 2 / (Math.exp(x) + Math.exp(-x));
|
|
}
|
|
|
|
if (isComplex(x)) {
|
|
var ep = Math.exp(x.re);
|
|
var en = Math.exp(-x.re);
|
|
var re = Math.cos(x.im) * (ep + en);
|
|
var im = Math.sin(x.im) * (ep - en);
|
|
var den = re * re + im * im;
|
|
return new Complex(2 * re / den, -2 * im / den);
|
|
}
|
|
|
|
if (isUnit(x)) {
|
|
if (!x.hasBase(Unit.BASE_UNITS.ANGLE)) {
|
|
throw new TypeError ('Unit in function sech is no angle');
|
|
}
|
|
return sech(x.value);
|
|
}
|
|
|
|
if (isCollection(x)) {
|
|
return collection.deepMap(x, sech);
|
|
}
|
|
|
|
if (isBoolean(x)) {
|
|
return sech(x ? 1 : 0);
|
|
}
|
|
|
|
if (x instanceof BigNumber) {
|
|
// TODO: implement BigNumber support
|
|
// downgrade to Number
|
|
return sech(x.toNumber());
|
|
}
|
|
|
|
throw new math.error.UnsupportedTypeError('sech', math['typeof'](x));
|
|
};
|
|
};
|