Evaluates a normal (Gaussian) probability distribution
with the given 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
normal probability distribution function is to be evaluated.
- parameters
- Type: array<
System..::.Object
>[]()[]
An Object array representing the
parameters used to evaluate the normal probability density function,
see method GetParameters.
Return Value
A
double array representing the normal probability
density of each value in
xData.
Implements
IProbabilityDistribution..::.Eval(array<Double>[]()[], array<Object>[]()[])
See Also