Package org.djutils.stats
Class DistNormalTableTest
- java.lang.Object
 - 
- org.djutils.stats.DistNormalTableTest
 
 
- 
public class DistNormalTableTest extends Object
Test the DistNormalTable class.- Author:
 - Peter Knoppers
 
 
- 
- 
Constructor Summary
Constructors Constructor Description DistNormalTableTest() 
- 
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidtestCumulativeNormalProbabilities()Test the cumulative normal probabilities based on well-known values.voidtestInverseCumulativeNormalProbabilities()Test the inverse cumulative normal probabilities based on well-known values.voidtestSmoothness()Test that the values in the CUMULATIVE_NORMAL_PROBABILITIES table are non-decreasing and range from 0.5 to 1.0. 
 - 
 
- 
- 
Method Detail
- 
testSmoothness
public void testSmoothness()
Test that the values in the CUMULATIVE_NORMAL_PROBABILITIES table are non-decreasing and range from 0.5 to 1.0. This test should catch accidental edits and typos. 
- 
testCumulativeNormalProbabilities
public void testCumulativeNormalProbabilities()
Test the cumulative normal probabilities based on well-known values. Values from https://en.wikipedia.org/wiki/68%E2%80%9395%E2%80%9399.7_rule 
- 
testInverseCumulativeNormalProbabilities
public void testInverseCumulativeNormalProbabilities()
Test the inverse cumulative normal probabilities based on well-known values. Values from https://en.wikipedia.org/wiki/68%E2%80%9395%E2%80%9399.7_rule 
 - 
 
 -