2022-01-29 22:43:08 +00:00
|
|
|
open Jest
|
|
|
|
open Expect
|
|
|
|
|
|
|
|
describe("Bandwidth", () => {
|
|
|
|
test("nrd0()", () => {
|
|
|
|
let data = [1., 4., 3., 2.]
|
2022-04-12 23:59:40 +00:00
|
|
|
expect(SampleSetDist_Bandwidth.nrd0(data))->toEqual(0.7625801874014622)
|
2022-01-29 22:43:08 +00:00
|
|
|
})
|
|
|
|
test("nrd()", () => {
|
|
|
|
let data = [1., 4., 3., 2.]
|
2022-04-12 23:59:40 +00:00
|
|
|
expect(SampleSetDist_Bandwidth.nrd(data))->toEqual(0.8981499984950554)
|
2022-01-29 22:43:08 +00:00
|
|
|
})
|
|
|
|
})
|