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

151 lines (127 loc) 4.57 kB
import { nearlyEqual as bigNearlyEqual } from '../../utils/bignumber/nearlyEqual' import { nearlyEqual } from '../../utils/number' import { factory } from '../../utils/factory' import { createAlgorithm03 } from '../../type/matrix/utils/algorithm03' import { createAlgorithm07 } from '../../type/matrix/utils/algorithm07' import { createAlgorithm12 } from '../../type/matrix/utils/algorithm12' import { createAlgorithm14 } from '../../type/matrix/utils/algorithm14' import { createAlgorithm13 } from '../../type/matrix/utils/algorithm13' const name = 'smaller' const dependencies = [ 'typed', 'config', 'matrix', 'DenseMatrix' ] export const createSmaller = /* #__PURE__ */ factory(name, dependencies, ({ typed, config, matrix, DenseMatrix }) => { const algorithm03 = createAlgorithm03({ typed }) const algorithm07 = createAlgorithm07({ typed, DenseMatrix }) const algorithm12 = createAlgorithm12({ typed, DenseMatrix }) const algorithm13 = createAlgorithm13({ typed }) const algorithm14 = createAlgorithm14({ typed }) /** * Test whether value x is smaller than y. * * The function returns true when x is smaller than y and the relative * difference between x and y is smaller than the configured epsilon. The * function cannot be used to compare values smaller than approximately 2.22e-16. * * For matrices, the function is evaluated element wise. * Strings are compared by their numerical value. * * Syntax: * * math.smaller(x, y) * * Examples: * * math.smaller(2, 3) // returns true * math.smaller(5, 2 * 2) // returns false * * const a = math.unit('5 cm') * const b = math.unit('2 inch') * math.smaller(a, b) // returns true * * See also: * * equal, unequal, smallerEq, smaller, smallerEq, compare * * @param {number | BigNumber | Fraction | boolean | Unit | string | Array | Matrix} x First value to compare * @param {number | BigNumber | Fraction | boolean | Unit | string | Array | Matrix} y Second value to compare * @return {boolean | Array | Matrix} Returns true when the x is smaller than y, else returns false */ return typed(name, { 'boolean, boolean': function (x, y) { return x < y }, 'number, number': function (x, y) { return x < y && !nearlyEqual(x, y, config.epsilon) }, 'BigNumber, BigNumber': function (x, y) { return x.lt(y) && !bigNearlyEqual(x, y, config.epsilon) }, 'Fraction, Fraction': function (x, y) { return x.compare(y) === -1 }, 'Complex, Complex': function (x, y) { throw new TypeError('No ordering relation is defined for complex numbers') }, 'Unit, Unit': function (x, y) { if (!x.equalBase(y)) { throw new Error('Cannot compare units with different base') } return this(x.value, y.value) }, 'SparseMatrix, SparseMatrix': function (x, y) { return algorithm07(x, y, this) }, 'SparseMatrix, DenseMatrix': function (x, y) { return algorithm03(y, x, this, true) }, 'DenseMatrix, SparseMatrix': function (x, y) { return algorithm03(x, y, this, false) }, 'DenseMatrix, DenseMatrix': function (x, y) { return algorithm13(x, y, this) }, 'Array, Array': function (x, y) { // use matrix implementation return this(matrix(x), matrix(y)).valueOf() }, 'Array, Matrix': function (x, y) { // use matrix implementation return this(matrix(x), y) }, 'Matrix, Array': function (x, y) { // use matrix implementation return this(x, matrix(y)) }, 'SparseMatrix, any': function (x, y) { return algorithm12(x, y, this, false) }, 'DenseMatrix, any': function (x, y) { return algorithm14(x, y, this, false) }, 'any, SparseMatrix': function (x, y) { return algorithm12(y, x, this, true) }, 'any, DenseMatrix': function (x, y) { return algorithm14(y, x, this, true) }, 'Array, any': function (x, y) { // use matrix implementation return algorithm14(matrix(x), y, this, false).valueOf() }, 'any, Array': function (x, y) { // use matrix implementation return algorithm14(matrix(y), x, this, true).valueOf() } }) }) export const createSmallerNumber = /* #__PURE__ */ factory(name, ['typed', 'config'], ({ typed, config }) => { return typed(name, { 'number, number': function (x, y) { return x < y && !nearlyEqual(x, y, config.epsilon) } }) })