mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
60 lines
1.7 KiB
JavaScript
60 lines
1.7 KiB
JavaScript
'use strict';
|
|
|
|
function factory(type, config, load, typed) {
|
|
var multiplyScalar = load(require('./multiplyScalar'));
|
|
|
|
/**
|
|
* Divide two scalar values, `x / y`.
|
|
* This function is meant for internal use: it is used by the public functions
|
|
* `divide` and `inv`.
|
|
*
|
|
* 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 Numerator
|
|
* @param {number | BigNumber | Fraction | Complex} y Denominator
|
|
* @return {number | BigNumber | Fraction | Complex | Unit} Quotient, `x / y`
|
|
* @private
|
|
*/
|
|
var divideScalar = typed('divide', {
|
|
'number, number': function (x, y) {
|
|
return x / y;
|
|
},
|
|
|
|
'Complex, Complex': function (x, y) {
|
|
return x.div(y);
|
|
},
|
|
|
|
'BigNumber, BigNumber': function (x, y) {
|
|
return x.div(y);
|
|
},
|
|
|
|
'Fraction, Fraction': function (x, y) {
|
|
return x.div(y);
|
|
},
|
|
|
|
'Unit, number | Fraction | BigNumber': function (x, y) {
|
|
var res = x.clone();
|
|
// TODO: move the divide function to Unit.js, it uses internals of Unit
|
|
res.value = divideScalar(((res.value === null) ? res._normalize(1) : res.value), y);
|
|
return res;
|
|
},
|
|
|
|
'number | Fraction | BigNumber, Unit': function (x, y) {
|
|
var res = y.pow(-1);
|
|
// TODO: move the divide function to Unit.js, it uses internals of Unit
|
|
res.value = multiplyScalar(((res.value === null) ? res._normalize(1) : res.value), x);
|
|
return res;
|
|
},
|
|
|
|
'Unit, Unit': function (x, y) {
|
|
return x.divide(y);
|
|
}
|
|
|
|
});
|
|
|
|
return divideScalar;
|
|
}
|
|
|
|
exports.factory = factory;
|