HomeSort by relevance Sort by last modified time
    Searched defs:degreesOfFreedom (Results 1 - 2 of 2) sorted by null

  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/inference/
TTestImpl.java     [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/distribution/
TDistributionImpl.java 48 private double degreesOfFreedom;
57 * @param degreesOfFreedom the degrees of freedom.
62 public TDistributionImpl(double degreesOfFreedom, double inverseCumAccuracy) {
64 setDegreesOfFreedomInternal(degreesOfFreedom);
70 * @param degreesOfFreedom the degrees of freedom.
72 public TDistributionImpl(double degreesOfFreedom) {
73 this(degreesOfFreedom, DEFAULT_INVERSE_ABSOLUTE_ACCURACY);
78 * @param degreesOfFreedom the new degrees of freedom.
82 public void setDegreesOfFreedom(double degreesOfFreedom) {
83 setDegreesOfFreedomInternal(degreesOfFreedom);
    [all...]

Completed in 59 milliseconds