mathjs/src/function/arithmetic/divideScalar.js
Nick Ewing 859cfa208a
Replace recursive calls in typed-functions with this-style calls (#1903)
* Fix #1902: typo in an example in the documentation

* Replace recursive calls in typed-functions with `this`-style calls

* Replace more recursive calls in typed-functions with `this`-style calls

* Refactor compareNatural to use this-style recursion

Co-authored-by: josdejong <wjosdejong@gmail.com>
2020-07-13 17:37:30 +02:00

59 lines
1.7 KiB
JavaScript

import { factory } from '../../utils/factory'
import { typeOf } from '../../utils/is'
const name = 'divideScalar'
const dependencies = ['typed', 'numeric']
export const createDivideScalar = /* #__PURE__ */ factory(name, dependencies, ({ typed, numeric }) => {
/**
* 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).
*
* @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
*/
return typed(name, {
'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) {
const res = x.clone()
// TODO: move the divide function to Unit.js, it uses internals of Unit
const one = numeric(1, typeOf(y))
res.value = this(((res.value === null) ? res._normalize(one) : res.value), y)
return res
},
'number | Fraction | BigNumber, Unit': function (x, y) {
let res = y.clone()
res = res.pow(-1)
// TODO: move the divide function to Unit.js, it uses internals of Unit
const one = numeric(1, typeOf(x))
res.value = this(x, ((y.value === null) ? y._normalize(one) : y.value))
return res
},
'Unit, Unit': function (x, y) {
return x.divide(y)
}
})
})