mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
57 lines (45 loc) • 1.55 kB
JavaScript
function factory (type, config, load, typed) {
/**
* Multiply two scalar values, `x * y`.
* This function is meant for internal use: it is used by the public function
* `multiply`
*
* This function does not support collections (Array or Matrix), and does
* not validate the number of of inputs.
*
* @param {number | BigNumber | Fraction | Complex | Unit} x First value to multiply
* @param {number | BigNumber | Fraction | Complex} y Second value to multiply
* @return {number | BigNumber | Fraction | Complex | Unit} Multiplication of `x` and `y`
* @private
*/
const multiplyScalar = typed('multiplyScalar', {
'number, number': function (x, y) {
return x * y
},
'Complex, Complex': function (x, y) {
return x.mul(y)
},
'BigNumber, BigNumber': function (x, y) {
return x.times(y)
},
'Fraction, Fraction': function (x, y) {
return x.mul(y)
},
'number | Fraction | BigNumber | Complex, Unit': function (x, y) {
const res = y.clone()
res.value = (res.value === null) ? res._normalize(x) : multiplyScalar(res.value, x)
return res
},
'Unit, number | Fraction | BigNumber | Complex': function (x, y) {
const res = x.clone()
res.value = (res.value === null) ? res._normalize(y) : multiplyScalar(res.value, y)
return res
},
'Unit, Unit': function (x, y) {
return x.multiply(y)
}
})
return multiplyScalar
}
exports.factory = factory