mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
* Add `.js` extension to source file imports * Specify package `exports` in `package.json` Specify package type as `commonjs` (It's good to be specific) * Move all compiled scripts into `lib` directory Remove ./number.js (You can use the compiled ones in `./lib/*`) Tell node that the `esm` directory is type `module` and enable tree shaking. Remove unused files from packages `files` property * Allow importing of package.json * Make library ESM first * - Fix merge conflicts - Refactor `bundleAny` into `defaultInstance.js` and `browserBundle.cjs` - Refactor unit tests to be able to run with plain nodejs (no transpiling) - Fix browser examples * Fix browser and browserstack tests * Fix running unit tests on Node 10 (which has no support for modules) * Fix node.js examples (those are still commonjs) * Remove the need for `browserBundle.cjs` * Generate minified bundle only * [Security] Bump node-fetch from 2.6.0 to 2.6.1 (#1963) Bumps [node-fetch](https://github.com/bitinn/node-fetch) from 2.6.0 to 2.6.1. **This update includes a security fix.** - [Release notes](https://github.com/bitinn/node-fetch/releases) - [Changelog](https://github.com/node-fetch/node-fetch/blob/master/docs/CHANGELOG.md) - [Commits](https://github.com/bitinn/node-fetch/compare/v2.6.0...v2.6.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> * Cleanup console.log * Add integration tests to test the entry points (commonjs/esm, full/number only) * Create backward compatibility error messages in the files moved/removed since v8 * Describe breaking changes in HISTORY.md * Bump karma from 5.2.1 to 5.2.2 (#1965) Bumps [karma](https://github.com/karma-runner/karma) from 5.2.1 to 5.2.2. - [Release notes](https://github.com/karma-runner/karma/releases) - [Changelog](https://github.com/karma-runner/karma/blob/master/CHANGELOG.md) - [Commits](https://github.com/karma-runner/karma/compare/v5.2.1...v5.2.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Lee Langley-Rees <lee@greenimp.co.uk> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
115 lines
4.7 KiB
JavaScript
115 lines
4.7 KiB
JavaScript
import assert from 'assert'
|
|
import math from '../../../../src/defaultInstance.js'
|
|
import approx from '../../../../tools/approx.js'
|
|
const pi = math.pi
|
|
const acoth = math.acoth
|
|
const coth = math.coth
|
|
const complex = math.complex
|
|
const matrix = math.matrix
|
|
const unit = math.unit
|
|
const bigmath = math.create({ number: 'BigNumber', precision: 20 })
|
|
const biggermath = math.create({ precision: 21 })
|
|
const predmath = math.create({ predictable: true })
|
|
const acothBig = bigmath.acoth
|
|
const Big = bigmath.bignumber
|
|
|
|
describe('acoth', function () {
|
|
it('should return the hyperbolic arccot of a boolean', function () {
|
|
assert.strictEqual(acoth(true), Infinity)
|
|
approx.deepEqual(acoth(false), complex(0, pi / 2))
|
|
// assert.ok(isNaN(acoth(false)))
|
|
})
|
|
|
|
it('should return the hyperbolic arccot of a number', function () {
|
|
approx.deepEqual(acoth(0), complex(0, pi / 2))
|
|
approx.deepEqual(acoth(0.5), complex(0.5493061443340548, -1.5707963267949))
|
|
// assert.ok(isNaN(acoth(0)))
|
|
// assert.ok(isNaN(acoth(0.5)))
|
|
|
|
approx.equal(acoth(-2), -0.54930614433405484569762261846)
|
|
assert.strictEqual(acoth(-1), -Infinity)
|
|
assert.strictEqual(acoth(1), Infinity)
|
|
approx.equal(acoth(2), 0.54930614433405484569762261846)
|
|
assert.strictEqual(acoth(Infinity), 0)
|
|
})
|
|
|
|
it('should return the hyperbolic arccot of a number when predictable:true', function () {
|
|
assert.strictEqual(typeof predmath.acoth(0.5), 'number')
|
|
assert(isNaN(predmath.acoth(0.5)))
|
|
})
|
|
|
|
it('should return the hyperbolic arccot of a bignumber', function () {
|
|
const arg2 = Big(-2)
|
|
const arg3 = Big(-1)
|
|
assert.deepStrictEqual(acothBig(Big(-Infinity)), Big('-0'))
|
|
assert.deepStrictEqual(acothBig(arg2), Big('-0.5493061443340548457'))
|
|
assert.deepStrictEqual(acothBig(arg3).toString(), '-Infinity')
|
|
assert.deepStrictEqual(acothBig(Big(1)).toString(), 'Infinity')
|
|
assert.deepStrictEqual(acothBig(Big(2)), Big('0.5493061443340548457'))
|
|
assert.deepStrictEqual(acothBig(Big(Infinity)), Big(0))
|
|
|
|
// Make sure arg was not changed
|
|
assert.deepStrictEqual(arg2, Big(-2))
|
|
assert.deepStrictEqual(arg3, Big(-1))
|
|
|
|
// out of range
|
|
assert.ok(acothBig(Big(-0.5)).isNaN())
|
|
assert.ok(acothBig(Big(0.5)).isNaN())
|
|
})
|
|
|
|
it('should be the inverse function of hyperbolic cot', function () {
|
|
approx.equal(acoth(coth(-2)), -2)
|
|
approx.equal(acoth(coth(-1)), -1)
|
|
approx.equal(acoth(coth(0)), 0)
|
|
approx.equal(acoth(coth(1)), 1)
|
|
approx.equal(acoth(coth(2)), 2)
|
|
})
|
|
|
|
it('should be the inverse function of bignumber coth', function () {
|
|
assert.deepStrictEqual(acothBig(bigmath.coth(Big(-1))), Big(-1))
|
|
assert.deepStrictEqual(acothBig(bigmath.coth(Big(0))), Big(0))
|
|
assert.deepStrictEqual(acothBig(bigmath.coth(Big(1))), Big(1))
|
|
|
|
/* Pass in more digits to pi. */
|
|
assert.deepStrictEqual(acothBig(biggermath.coth(Big(-2))), Big('-2.0000000000000000001'))
|
|
assert.deepStrictEqual(acothBig(biggermath.coth(Big(2))), Big('2.0000000000000000001'))
|
|
})
|
|
|
|
it('should return the arccoth of a complex number', function () {
|
|
approx.deepEqual(acoth(complex('2+3i')), complex(0.1469466662255, -0.2318238045004))
|
|
approx.deepEqual(acoth(complex('2-3i')), complex(0.1469466662255, 0.2318238045004))
|
|
approx.deepEqual(acoth(complex('-2+3i')), complex(-0.1469466662255, -0.2318238045004))
|
|
approx.deepEqual(acoth(complex('-2-3i')), complex(-0.1469466662255, 0.2318238045004))
|
|
approx.deepEqual(acoth(complex('1+i')), complex(0.4023594781085251, -0.55357435889705))
|
|
approx.deepEqual(acoth(complex('i')), complex(0, -pi / 4))
|
|
assert.deepStrictEqual(acoth(complex('1')), complex(Infinity, 0))
|
|
approx.deepEqual(acoth(complex('0.5')), complex(0.5493061443340548, -1.5707963267949))
|
|
approx.deepEqual(acoth(complex('0')), complex(0, pi / 2))
|
|
})
|
|
|
|
it('should throw an error if called with a unit', function () {
|
|
assert.throws(function () { acoth(unit('45deg')) })
|
|
assert.throws(function () { acoth(unit('5 celsius')) })
|
|
})
|
|
|
|
it('should throw an error if called with a string', function () {
|
|
assert.throws(function () { acoth('string') })
|
|
})
|
|
|
|
it('should calculate the arccot element-wise for arrays and matrices', function () {
|
|
const acoth123 = [Infinity, 0.54930614433405, 0.34657359027997]
|
|
approx.deepEqual(acoth([1, 2, 3]), acoth123)
|
|
approx.deepEqual(acoth(matrix([1, 2, 3])), matrix(acoth123))
|
|
})
|
|
|
|
it('should throw an error in case of invalid number of arguments', function () {
|
|
assert.throws(function () { acoth() }, /TypeError: Too few arguments/)
|
|
assert.throws(function () { acoth(1, 2) }, /TypeError: Too many arguments/)
|
|
})
|
|
|
|
it('should LaTeX acoth', function () {
|
|
const expression = math.parse('acoth(2)')
|
|
assert.strictEqual(expression.toTex(), '\\coth^{-1}\\left(2\\right)')
|
|
})
|
|
})
|