IProbabilityDistribution.Eval Method (Double[],Object[]) |
Evaluates the user-supplied probability density of each
value in xData using the supplied probability
distribution parameters.
Namespace: Imsl.StatAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxdouble[] Eval(
double[] xData,
Object[] parameters
)
Function Eval (
xData As Double(),
parameters As Object()
) As Double()
array<double>^ Eval(
array<double>^ xData,
array<Object^>^ parameters
)
abstract Eval :
xData : float[] *
parameters : Object[] -> float[]
Parameters
- xData
- Type:System.Double[]
A double array containing the points at which the
probability density function is to be evaluated.
- parameters
- Type:System.Object[]
An Object array containing the probability
distribution parameters to be used in evaluating
xData. See method GetParameters.
Return Value
Type:
Double[]
A
double array representing the probability density of each value of
xData.
See Also