mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-18 14:59:29 +00:00
* initial implementation of multidimensional std and var * consolidated std function into var, cleaned up the interface for var, fixed bias correction * added documentation of variable axis for std and var * updated documentation for std and var * changed the order of normalization and dimension for a three parameter input in the functions * updated documentation for var and std * add transform expressions for std and var with variable axis * added test coverage for std and var with a variable axis * update to documentation * change n dim std to use apply function * fixed tests, removed unnecessary code, updated docs * fixed typo in docs * update docs to remove a type * changed location of apply function * updated tests to use deepStrictEqual to pass linter * adding test coverage for var.transform and std.transform
52 lines
2.4 KiB
JavaScript
52 lines
2.4 KiB
JavaScript
const assert = require('assert')
|
|
const math = require('../../../src/main')
|
|
const Unit = math.type.Unit
|
|
const variance = math.expression.transform.var
|
|
|
|
describe('variance', function () {
|
|
const inputMatrix = [ // this is a 4x3x2 matrix, full test coverage
|
|
[ [10, 200], [30, 40], [50, 60] ],
|
|
[ [70, 80], [90, 100], [180, 120] ],
|
|
[ [130, 140], [160, 150], [170, 110] ],
|
|
[ [190, 20], [210, 220], [230, 240] ]
|
|
]
|
|
|
|
it('should return the variance value along a dimension on a matrix with one based indicies', function () {
|
|
assert.deepStrictEqual(variance([
|
|
[2, 6],
|
|
[4, 10]], 2), [8, 18])
|
|
assert.deepStrictEqual(variance([
|
|
[2, 6],
|
|
[4, 10]], 1), [2, 8])
|
|
assert.deepStrictEqual(variance(inputMatrix, 1),
|
|
[[6000, 6000], [6225, 5825], [5825, 5825]])
|
|
assert.deepStrictEqual(variance(inputMatrix, 2),
|
|
[[400, 7600], [3433.3333333333335, 400], [433.33333333333337, 433.33333333333337], [400, 14800]])
|
|
assert.deepStrictEqual(variance(inputMatrix, 3),
|
|
[[18050, 50, 50], [50, 50, 1800], [50, 50, 1800], [14450, 50, 50]])
|
|
})
|
|
|
|
it('should throw an error if called with an invalid one based index', function () {
|
|
assert.throws(function () { variance(inputMatrix, 0) }, /Index out of range/)
|
|
assert.throws(function () { variance(inputMatrix, 4) }, /Index out of range/)
|
|
})
|
|
|
|
it('should throw an error if called with invalid type of arguments', function () {
|
|
assert.throws(function () { variance(new Date(), 2) }, /Cannot calculate var, unexpected type of argument/)
|
|
assert.throws(function () { variance(new Unit(5, 'cm'), new Unit(10, 'cm')) }, /Cannot calculate var, unexpected type of argument/)
|
|
assert.throws(function () { variance(2, 3, null) }, /Cannot calculate var, unexpected type of argument/)
|
|
assert.throws(function () { variance([2, 3, null]) }, /Cannot calculate var, unexpected type of argument/)
|
|
assert.throws(function () { variance([[2, 4, 6], [1, 3, 5]], 'biased', 0) }, /Cannot convert "biased" to a number/)
|
|
assert.throws(function () { variance([[2, 4, 6], [1, 3, 5]], 0, new Date()) }, /Cannot calculate var, unexpected type of argument/)
|
|
})
|
|
|
|
it('should throw an error if called with an empty array', function () {
|
|
assert.throws(function () { variance([]) })
|
|
})
|
|
|
|
it('should LaTeX var', function () {
|
|
const expression = math.parse('var(1,2,3)')
|
|
assert.strictEqual(expression.toTex(), '\\mathrm{Var}\\left(1,2,3\\right)')
|
|
})
|
|
})
|