edu.udo.cs.yale.operator.learner
Interface Distribution

All Known Implementing Classes:
DiscreteDistribution, NormalDistribution

public interface Distribution

Distribution is an interface for a distribution class. It describes two methods, which every distribution must have

Version:
$Id$
Author:
Sebastian Land

Method Summary
 double getProbability(double x)
          This method returns the density of the given distribution at the specified value
 java.lang.String toString()
          Should return an textual representation of the distribution.
 

Method Detail

getProbability

double getProbability(double x)
This method returns the density of the given distribution at the specified value

Parameters:
x - the value which density shall be returned


toString

java.lang.String toString()
Should return an textual representation of the distribution.

Overrides:
toString in class java.lang.Object



Copyright © 2001-2006