mathjs/test/unit-tests/expression/transform/std.transform.test.js
2019-07-20 13:46:31 +02:00

53 lines
2.7 KiB
JavaScript

import assert from 'assert'
import math from '../../../../src/bundleAny'
const Unit = math.Unit
const std = math.expression.transform.std
describe('std', 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 standard deviation value along a dimension on a matrix with one based indicies', function () {
assert.deepStrictEqual(std([
[2, 6],
[4, 10]], 2), [math.sqrt(8), math.sqrt(18)])
assert.deepStrictEqual(std([
[2, 6],
[4, 10]], 1), [math.sqrt(2), math.sqrt(8)])
assert.deepStrictEqual(std(inputMatrix, 1),
[[math.sqrt(6000), math.sqrt(6000)], [math.sqrt(6225), math.sqrt(5825)], [math.sqrt(5825), math.sqrt(5825)]])
assert.deepStrictEqual(std(inputMatrix, 2),
[[math.sqrt(400), math.sqrt(7600)], [math.sqrt(3433.3333333333335), math.sqrt(400.0)], [math.sqrt(433.33333333333337), math.sqrt(433.33333333333337)], [math.sqrt(400.0), math.sqrt(14800)]])
assert.deepStrictEqual(std(inputMatrix, 3),
[[math.sqrt(18050), math.sqrt(50), math.sqrt(50)], [math.sqrt(50), math.sqrt(50), math.sqrt(1800)], [math.sqrt(50), math.sqrt(50), math.sqrt(1800)], [math.sqrt(14450), math.sqrt(50), math.sqrt(50)]])
})
it('should throw an error if called with an invalid one based index', function () {
assert.throws(function () { std(inputMatrix, 0) }, /Index out of range/)
assert.throws(function () { std(inputMatrix, 4) }, /Index out of range/)
})
it('should throw an error if called with invalid type of arguments', function () {
assert.throws(function () { std(new Date(), 2) }, /Cannot calculate std, unexpected type of argument/)
assert.throws(function () { std(new Unit(5, 'cm'), new Unit(10, 'cm')) }, /Cannot calculate std, unexpected type of argument/)
assert.throws(function () { std(2, 3, null) }, /Cannot calculate std, unexpected type of argument/)
assert.throws(function () { std([2, 3, null]) }, /Cannot calculate std, unexpected type of argument/)
assert.throws(function () { std([[2, 4, 6], [1, 3, 5]], 'biased', 0) }, /Cannot convert "biased" to a number/)
assert.throws(function () { std([[2, 4, 6], [1, 3, 5]], 1, new Date()) }, /Cannot calculate std, unexpected type of argument/)
})
it('should throw an error if called with an empty array', function () {
assert.throws(function () { std([]) })
})
it('should LaTeX std', function () {
const expression = math.parse('std(1,2,3)')
assert.strictEqual(expression.toTex(), '\\mathrm{std}\\left(1,2,3\\right)')
})
})