public interface Distribution
The purpose of this interface is to fit the probability distribution to a given set of data and return the probability density at each value of the given set of data.
Modifier and Type | Method and Description |
---|---|
double[] |
eval(double[] xData)
Evaluation method to fit the user-supplied probability density
function to input data
|
double[] eval(double[] xData)
xData
- a double
array representing the points at
which the probability density function is to be evaluated.double
array representing the probability
density at each value of xData
Copyright © 2020 Rogue Wave Software. All rights reserved.