mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
77 lines
1.9 KiB
JavaScript
77 lines
1.9 KiB
JavaScript
'use strict';
|
|
|
|
var deepMap = require('../../utils/collection/deepMap');
|
|
var coshSinhCschSech = require('../../utils/bignumber/coshSinhCschSech');
|
|
|
|
function factory (type, config, load, typed) {
|
|
/**
|
|
* Calculate the hyperbolic sine of a value,
|
|
* defined as `sinh(x) = 1/2 * (exp(x) - exp(-x))`.
|
|
*
|
|
* For matrices, the function is evaluated element wise.
|
|
*
|
|
* Syntax:
|
|
*
|
|
* math.sinh(x)
|
|
*
|
|
* Examples:
|
|
*
|
|
* math.sinh(0.5); // returns number 0.5210953054937474
|
|
*
|
|
* See also:
|
|
*
|
|
* cosh, tanh
|
|
*
|
|
* @param {number | BigNumber | Complex | Unit | Array | Matrix} x Function input
|
|
* @return {number | BigNumber | Complex | Array | Matrix} Hyperbolic sine of x
|
|
*/
|
|
var sinh = typed('sinh', {
|
|
'number': _sinh,
|
|
|
|
'Complex': function (x) {
|
|
var cim = Math.cos(x.im);
|
|
var sim = Math.sin(x.im);
|
|
var ep = Math.exp(x.re);
|
|
var en = Math.exp(-x.re);
|
|
return new type.Complex(cim * (ep - en) / 2, sim * (ep + en) / 2);
|
|
},
|
|
|
|
'BigNumber': function (x) {
|
|
return coshSinhCschSech(x, type.BigNumber, true, false);
|
|
},
|
|
|
|
'Unit': function (x) {
|
|
if (!x.hasBase(type.Unit.BASE_UNITS.ANGLE)) {
|
|
throw new TypeError ('Unit in function sinh is no angle');
|
|
}
|
|
return sinh(x.value);
|
|
},
|
|
|
|
'Array | Matrix': function (x) {
|
|
// deep map collection, skip zeros since sinh(0) = 0
|
|
return deepMap(x, sinh, true);
|
|
}
|
|
});
|
|
|
|
sinh.toTex = '\\sinh\\left(${args[0]}\\right)';
|
|
|
|
return sinh;
|
|
}
|
|
|
|
/**
|
|
* Calculate the hyperbolic sine of a number
|
|
* @param {number} x
|
|
* @returns {number}
|
|
* @private
|
|
*/
|
|
function _sinh (x) {
|
|
if (Math.abs(x) < 1) {
|
|
return x + (x * x * x) / 6 + (x * x * x * x * x) / 120;
|
|
} else {
|
|
return (Math.exp(x) - Math.exp(-x)) / 2;
|
|
}
|
|
}
|
|
|
|
exports.name = 'sinh';
|
|
exports.factory = factory;
|