1 16 package org.apache.commons.math.distribution; 17 18 34 public interface FDistribution extends ContinuousDistribution { 35 39 void setNumeratorDegreesOfFreedom(double degreesOfFreedom); 40 41 45 double getNumeratorDegreesOfFreedom(); 46 47 51 void setDenominatorDegreesOfFreedom(double degreesOfFreedom); 52 53 57 double getDenominatorDegreesOfFreedom(); 58 } 59 | Popular Tags |