Evaluates a lognormal probability distribution with a given set of parameters
at each point in xData and returns the probability density
at each value.
Namespace:
Imsl.Stat
Assembly:
ImslCS (in ImslCS.dll) Version: 6.5.0.0
Syntax
Visual Basic (Declaration) |
---|
Public Overridable Function Eval ( _
xData As Double(), _
parameters As Object() _
) As Double() |
Visual C++ |
---|
public:
virtual array<double>^ Eval(
array<double>^ xData,
array<Object^>^ parameters
) |
Parameters
- xData
- Type: array<
System..::.Double
>[]()[]
A double array representing the points at which the
lognormal probability distribution function is to be evaluated.
- parameters
- Type: array<
System..::.Object
>[]()[]
An Object array representing the parameters used to
evaluate the lognormal distribution, see method GetParameters.
Return Value
A
double array representing the lognormal probability
density at each value of
xData.
Implements
IProbabilityDistribution..::.Eval(array<Double>[]()[], array<Object>[]()[])
See Also