UNPKG

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

47 lines (45 loc) 1.68 kB
'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 numberNumber(x, y) { return x * y; }, 'Complex, Complex': function ComplexComplex(x, y) { return x.mul(y); }, 'BigNumber, BigNumber': function BigNumberBigNumber(x, y) { return x.times(y); }, 'Fraction, Fraction': function FractionFraction(x, y) { return x.mul(y); }, 'number | Fraction | BigNumber | Complex, Unit': function numberFractionBigNumberComplexUnit(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 UnitNumberFractionBigNumberComplex(x, y) { var res = x.clone(); res.value = res.value === null ? res._normalize(y) : multiplyScalar(res.value, y); return res; }, 'Unit, Unit': function UnitUnit(x, y) { return x.multiply(y); } }); return multiplyScalar; } exports.factory = factory;