mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
58 lines
1.5 KiB
JavaScript
58 lines
1.5 KiB
JavaScript
'use strict';
|
|
|
|
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
|
|
*/
|
|
var 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) {
|
|
var 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) {
|
|
var 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;
|