mirror of
https://github.com/josdejong/mathjs.git
synced 2025-12-08 19:46:04 +00:00
* #2567: accept array as parameter for gcd() * #2567: accept 1d matrix as gcd() argument * #2567: support nested 1d array in gcd * #2567: simplify matrix signature * [fix] intersect method parameter type (#2897) * Update history and authors (see #2897) * feat: added chirp-z transform to calculate non-power-of-2 fft (#2900) * added chirp-z transform to calculate non-power-of-2 fft * simplify/remove _ifft function inside _czt function * chore: remove an unused dependency from `simplifyConstant` * fix: quantileSeq not accepting a matrix as second argument `prob` (see #2902) * fix a broken example of function `to` * fix a typo in the examples functions `distance`, `getMatrixDataType`, `subset`, and `max` (see #2902) * fix linting issue * Broadcasting (#2895) * broadcasting * Simplified broadcasting * Updated for broadcasting * Changed to camel case * Camel case and auto formating * Added comments * Skip if matrices have the same size * Fixed issue with undefined variable missing dot in `A._size` * Implemented broadcasting in all functions * Added helper functions * Added function to check for broadcasting rules * Tests for broadcasted arithmetic * Fixed issue with matrix the size of a vector * Documented and updated broadcasting * Included broadcast.test --------- Co-authored-by: David Contreras <david.contreras@guentner.com> Co-authored-by: Jos de Jong <wjosdejong@gmail.com> * Update history and authors * Update devDependencies * publish v11.6.0 * fix #2906: improve description of the behavior of `subset` for scalar values in the docs * fix #2907: determinant of empty matrix should be 1 * chore: add a few more unit tests to `det` --------- Co-authored-by: Jos de Jong <wjosdejong@gmail.com> Co-authored-by: Jaeu Jeong <wodndb@gmail.com> Co-authored-by: cyavictor88 <100557319+cyavictor88@users.noreply.github.com> Co-authored-by: David Contreras <dvd.cnt@gmail.com> Co-authored-by: David Contreras <david.contreras@guentner.com>
199 lines
8.0 KiB
JavaScript
199 lines
8.0 KiB
JavaScript
// test gcd
|
|
import assert from 'assert'
|
|
import { ArgumentsError } from '../../../../src/error/ArgumentsError.js'
|
|
|
|
import math from '../../../../src/defaultInstance.js'
|
|
const matrix = math.matrix
|
|
const sparse = math.sparse
|
|
const gcd = math.gcd
|
|
|
|
describe('gcd', function () {
|
|
it('should find the greatest common divisor of two or more numbers', function () {
|
|
assert.strictEqual(gcd(12, 8), 4)
|
|
assert.strictEqual(gcd(8, 12), 4)
|
|
assert.strictEqual(gcd(8, -12), 4)
|
|
assert.strictEqual(gcd(-12, 8), 4)
|
|
assert.strictEqual(gcd(12, -8), 4)
|
|
assert.strictEqual(gcd(15, 3), 3)
|
|
assert.strictEqual(gcd(25, 15, -10, 30), 5)
|
|
})
|
|
|
|
it('should find the greatest common divisor of two or more numbers with 1d array argument', function () {
|
|
assert.strictEqual(gcd([12, 8]), 4)
|
|
assert.strictEqual(gcd([25, 15, -10, 30]), 5)
|
|
})
|
|
|
|
it('should find the greatest common divisor of two or more numbers with 1d array argument', function () {
|
|
assert.strictEqual(gcd([[12, 8]]), 4)
|
|
assert.strictEqual(gcd([[25, 15, -10, 30]]), 5)
|
|
})
|
|
|
|
it('should throw exception on multi dimensional array argument', function () {
|
|
assert.throws(() => gcd([[1], [2]]), ArgumentsError)
|
|
})
|
|
|
|
it('should find the greatest common divisor of two or more numbers with 1d matrix argument', function () {
|
|
assert.strictEqual(gcd(matrix([12, 8])), 4)
|
|
assert.strictEqual(gcd(matrix([25, 15, -10, 30])), 5)
|
|
})
|
|
|
|
it('should find the greatest common divisor of two or more numbers with nested 1d matrix argument', function () {
|
|
assert.strictEqual(gcd(matrix([[12, 8]])), 4)
|
|
assert.strictEqual(gcd(matrix([[25, 15, -10, 30]])), 5)
|
|
})
|
|
|
|
it('should throw exception on multi dimensional matrix argument', function () {
|
|
assert.throws(() => gcd(matrix([[1], [2]])), ArgumentsError)
|
|
})
|
|
|
|
it('should calculate gcd for edge cases around zero', function () {
|
|
assert.strictEqual(gcd(3, 0), 3)
|
|
assert.strictEqual(gcd(-3, 0), 3)
|
|
assert.strictEqual(gcd(0, 3), 3)
|
|
assert.strictEqual(gcd(0, -3), 3)
|
|
assert.strictEqual(gcd(0, 0), 0)
|
|
|
|
assert.strictEqual(gcd(1, 1), 1)
|
|
assert.strictEqual(gcd(1, 0), 1)
|
|
assert.strictEqual(gcd(1, -1), 1)
|
|
assert.strictEqual(gcd(-1, 1), 1)
|
|
assert.strictEqual(gcd(-1, 0), 1)
|
|
assert.strictEqual(gcd(-1, -1), 1)
|
|
assert.strictEqual(gcd(0, 1), 1)
|
|
assert.strictEqual(gcd(0, -1), 1)
|
|
assert.strictEqual(gcd(0, 0), 0)
|
|
})
|
|
|
|
it('should calculate gcd for edge cases with negative values', function () {
|
|
assert.deepStrictEqual(1, gcd(2, 5))
|
|
assert.deepStrictEqual(1, gcd(2, -5))
|
|
assert.deepStrictEqual(1, gcd(-2, 5))
|
|
assert.deepStrictEqual(1, gcd(-2, -5))
|
|
|
|
assert.deepStrictEqual(2, gcd(2, 6))
|
|
assert.deepStrictEqual(2, gcd(2, -6))
|
|
assert.deepStrictEqual(2, gcd(-2, 6))
|
|
assert.deepStrictEqual(2, gcd(-2, -6))
|
|
})
|
|
|
|
it('should calculate gcd for BigNumbers', function () {
|
|
assert.deepStrictEqual(gcd(math.bignumber(12), math.bignumber(8)), math.bignumber(4))
|
|
assert.deepStrictEqual(gcd(math.bignumber(8), math.bignumber(12)), math.bignumber(4))
|
|
})
|
|
|
|
it('should calculate gcd for mixed BigNumbers and Numbers', function () {
|
|
assert.deepStrictEqual(gcd(math.bignumber(12), 8), math.bignumber(4))
|
|
assert.deepStrictEqual(gcd(8, math.bignumber(12)), math.bignumber(4))
|
|
})
|
|
|
|
it('should find the greatest common divisor of fractions', function () {
|
|
const a = math.fraction(5, 8)
|
|
assert.strictEqual(gcd(a, math.fraction(3, 7)).toString(), '0.017(857142)')
|
|
assert.strictEqual(a.toString(), '0.625')
|
|
})
|
|
|
|
it('should find the greatest common divisor of mixed numbers and fractions', function () {
|
|
assert.deepStrictEqual(gcd(math.fraction(12), 8), math.fraction(4))
|
|
assert.deepStrictEqual(gcd(12, math.fraction(8)), math.fraction(4))
|
|
})
|
|
|
|
it('should find the greatest common divisor of booleans', function () {
|
|
assert.strictEqual(gcd(true, true), 1)
|
|
assert.strictEqual(gcd(true, false), 1)
|
|
assert.strictEqual(gcd(false, true), 1)
|
|
assert.strictEqual(gcd(false, false), 0)
|
|
})
|
|
|
|
it('should throw an error if only one argument', function () {
|
|
assert.throws(function () { gcd(1) }, /TypeError: Too few arguments/)
|
|
})
|
|
|
|
it('should throw an error for non-integer numbers', function () {
|
|
assert.throws(function () { gcd(2, 4.1) }, /Parameters in function gcd must be integer numbers/)
|
|
assert.throws(function () { gcd(2.3, 4) }, /Parameters in function gcd must be integer numbers/)
|
|
})
|
|
|
|
it('should throw an error with complex numbers', function () {
|
|
assert.throws(function () { gcd(math.complex(1, 3), 2) }, /TypeError: Unexpected type of argument/)
|
|
})
|
|
|
|
it('should convert strings to numbers', function () {
|
|
assert.strictEqual(gcd('12', '8'), 4)
|
|
assert.strictEqual(gcd(12, '8'), 4)
|
|
assert.strictEqual(gcd('12', 8), 4)
|
|
|
|
assert.throws(function () { gcd('a', 8) }, /Cannot convert "a" to a number/)
|
|
})
|
|
|
|
it('should throw an error with units', function () {
|
|
assert.throws(function () { gcd(math.unit('5cm'), 2) }, /TypeError: Unexpected type of argument/)
|
|
})
|
|
|
|
describe('Array', function () {
|
|
it('should find the greatest common divisor array - scalar', function () {
|
|
assert.deepStrictEqual(gcd([5, 18, 3], 3), [1, 3, 3])
|
|
assert.deepStrictEqual(gcd(3, [5, 18, 3]), [1, 3, 3])
|
|
})
|
|
|
|
it('should find the greatest common divisor between broadcastable arrays', function () {
|
|
assert.deepStrictEqual(gcd([5, 18, 3], [[3], [2], [1]]), [[1, 3, 3], [1, 2, 1], [1, 1, 1]])
|
|
assert.deepStrictEqual(gcd([[5], [18], [3]], [3, 2, 1]), [[1, 1, 1], [3, 2, 1], [3, 1, 1]])
|
|
})
|
|
|
|
it('should find the greatest common divisor array - array', function () {
|
|
assert.deepStrictEqual(gcd([5, 2, 3], [25, 3, 6]), [5, 1, 3])
|
|
})
|
|
|
|
it('should find the greatest common divisor array - dense matrix', function () {
|
|
assert.deepStrictEqual(gcd([5, 2, 3], matrix([25, 3, 6])), matrix([5, 1, 3]))
|
|
})
|
|
|
|
it('should find the greatest common divisor array - sparse matrix', function () {
|
|
assert.deepStrictEqual(gcd([[5, 2, 3], [3, 2, 5]], sparse([[0, 3, 6], [6, 0, 25]])), matrix([[5, 1, 3], [3, 2, 5]]))
|
|
})
|
|
})
|
|
|
|
describe('DenseMatrix', function () {
|
|
it('should find the greatest common divisor dense matrix - scalar', function () {
|
|
assert.deepStrictEqual(gcd(matrix([5, 18, 3]), 3), matrix([1, 3, 3]))
|
|
assert.deepStrictEqual(gcd(3, matrix([5, 18, 3])), matrix([1, 3, 3]))
|
|
})
|
|
|
|
it('should find the greatest common divisor dense matrix - array', function () {
|
|
assert.deepStrictEqual(gcd(matrix([5, 2, 3]), [25, 3, 6]), matrix([5, 1, 3]))
|
|
})
|
|
|
|
it('should find the greatest common divisor dense matrix - dense matrix', function () {
|
|
assert.deepStrictEqual(gcd(matrix([5, 2, 3]), matrix([25, 3, 6])), matrix([5, 1, 3]))
|
|
})
|
|
|
|
it('should find the greatest common divisor dense matrix - sparse matrix', function () {
|
|
assert.deepStrictEqual(gcd(matrix([[5, 2, 3], [3, 2, 5]]), sparse([[0, 3, 6], [6, 0, 25]])), matrix([[5, 1, 3], [3, 2, 5]]))
|
|
})
|
|
})
|
|
|
|
describe('SparseMatrix', function () {
|
|
it('should find the greatest common divisor sparse matrix - scalar', function () {
|
|
assert.deepStrictEqual(gcd(sparse([[5, 0, 3], [0, 18, 0]]), 3), matrix([[1, 3, 3], [3, 3, 3]]))
|
|
assert.deepStrictEqual(gcd(3, sparse([[5, 0, 3], [0, 18, 0]])), matrix([[1, 3, 3], [3, 3, 3]]))
|
|
})
|
|
|
|
it('should find the greatest common divisor sparse matrix - array', function () {
|
|
assert.deepStrictEqual(gcd(sparse([[5, 2, 3], [3, 2, 5]]), [[0, 3, 6], [6, 0, 25]]), matrix([[5, 1, 3], [3, 2, 5]]))
|
|
})
|
|
|
|
it('should find the greatest common divisor sparse matrix - dense matrix', function () {
|
|
assert.deepStrictEqual(gcd(sparse([[5, 2, 3], [3, 2, 5]]), matrix([[0, 3, 6], [6, 0, 25]])), matrix([[5, 1, 3], [3, 2, 5]]))
|
|
})
|
|
|
|
it('should find the greatest common divisor sparse matrix - sparse matrix', function () {
|
|
assert.deepStrictEqual(gcd(sparse([[5, 2, 3], [3, 2, 5]]), sparse([[0, 3, 6], [6, 0, 25]])), sparse([[5, 1, 3], [3, 2, 5]]))
|
|
})
|
|
})
|
|
|
|
it('should LaTeX gcd', function () {
|
|
const expression = math.parse('gcd(2,3)')
|
|
assert.strictEqual(expression.toTex(), '\\gcd\\left(2,3\\right)')
|
|
})
|
|
})
|