jiangchengfeiyi-xiaochengxu/node_modules/mathjs/lib/esm/function/arithmetic/log10.js

67 lines
2.0 KiB
JavaScript
Raw Normal View History

2025-01-02 03:13:50 +00:00
import { log10Number } from '../../plain/number/index.js';
2025-04-05 08:12:09 +00:00
import { promoteLogarithm } from '../../utils/bigint.js';
import { deepMap } from '../../utils/collection.js';
import { factory } from '../../utils/factory.js';
2025-01-02 03:13:50 +00:00
var name = 'log10';
var dependencies = ['typed', 'config', 'Complex'];
2025-04-05 08:12:09 +00:00
var log16 = log10Number(16);
2025-01-02 03:13:50 +00:00
export var createLog10 = /* #__PURE__ */factory(name, dependencies, _ref => {
var {
typed,
config,
2025-04-05 08:12:09 +00:00
Complex
2025-01-02 03:13:50 +00:00
} = _ref;
/**
* Calculate the 10-base logarithm of a value. This is the same as calculating `log(x, 10)`.
*
* For matrices, the function is evaluated element wise.
*
* Syntax:
*
* math.log10(x)
*
* Examples:
*
* math.log10(0.00001) // returns -5
* math.log10(10000) // returns 4
* math.log(10000) / math.log(10) // returns 4
* math.pow(10, 4) // returns 10000
*
* See also:
*
* exp, log, log1p, log2
*
* @param {number | BigNumber | Complex | Array | Matrix} x
* Value for which to calculate the logarithm.
* @return {number | BigNumber | Complex | Array | Matrix}
* Returns the 10-base logarithm of `x`
*/
2025-04-05 08:12:09 +00:00
function complexLog(c) {
return c.log().div(Math.LN10);
}
function complexLogNumber(x) {
return complexLog(new Complex(x, 0));
}
2025-01-02 03:13:50 +00:00
return typed(name, {
number: function number(x) {
if (x >= 0 || config.predictable) {
return log10Number(x);
} else {
// negative value -> complex value computation
2025-04-05 08:12:09 +00:00
return complexLogNumber(x);
2025-01-02 03:13:50 +00:00
}
},
2025-04-05 08:12:09 +00:00
bigint: promoteLogarithm(log16, log10Number, config, complexLogNumber),
Complex: complexLog,
2025-01-02 03:13:50 +00:00
BigNumber: function BigNumber(x) {
if (!x.isNegative() || config.predictable) {
return x.log();
} else {
// downgrade to number, return Complex valued result
2025-04-05 08:12:09 +00:00
return complexLogNumber(x.toNumber());
2025-01-02 03:13:50 +00:00
}
},
'Array | Matrix': typed.referToSelf(self => x => deepMap(x, self))
});
});