A class to represent Normal Distribution. More...
Public Member Functions | |
_.Library.Double | cdf (_.Library.Double x1, _.Library.Double x2) |
An interface method for cumulative distribution function (CDF). More... | |
_.Library.Double | pdf (_.Library.Double x) |
An interface method for probability distribution function (PDF). More... | |
![]() | |
_.Library.Status | OnAddToSaveSet (_.Library.Integer depth, _.Library.Integer insert, _.Library.Integer callcount) |
This callback method is invoked when the current object is added to the SaveSet,. More... | |
_.Library.Status | OnClose () |
This callback method is invoked by the <METHOD>Close</METHOD> method to. More... | |
_.Library.Status | OnConstructClone (_.Library.RegisteredObject object, _.Library.Boolean deep, _.Library.String cloned) |
This callback method is invoked by the <METHOD>ConstructClone</METHOD> method to. More... | |
_.Library.Status | OnNew () |
This callback method is invoked by the <METHOD>New</METHOD> method to. More... | |
_.Library.Status | OnValidateObject () |
This callback method is invoked by the <METHOD>ValidateObject</METHOD> method to. More... | |
![]() | |
_.DeepSee.extensions.stat.Abstract1DDistribution | GetDiscreteDistribution (_.Library.Double x0, _.Library.Double x1, _.Library.Integer n, _.Library.Status sc) |
Returns a discrete distribution between values x0 and x1 constructed from. More... | |
Static Public Member Functions | |
_.DeepSee.extensions.stat.NormalDistribution | create (_.Library.Double mean, _.Library.Double variance) |
Creates a new object for Normal Distribution with the given mean value and variance. | |
Public Attributes | |
StdDev | |
More... | |
![]() | |
Entropy | |
More... | |
Mean | |
More... | |
Variance | |
More... | |
Private Attributes | |
__c1 | |
More... | |
Additional Inherited Members | |
![]() | |
CAPTION = None | |
Optional name used by the Form Wizard for a class when generating forms. More... | |
JAVATYPE = None | |
The Java type to be used when exported. | |
PROPERTYVALIDATION = None | |
This parameter controls the default validation behavior for the object. More... | |
A class to represent Normal Distribution.
_.Library.Double cdf | ( | _.Library.Double | x1, |
_.Library.Double | x2 | ||
) |
An interface method for cumulative distribution function (CDF).
Optionally provides a cumulative probability
of a value being between two values x1 and x2.
If called with 1 argument(x1) or if the value of second argument is empty string then returns CDF value for x1. If called with two arguments, x1 and x2 then returns a probability of a value being between x1 and x2.
Reimplemented from AbstractContinuousDistribution.
_.Library.Double pdf | ( | _.Library.Double | x | ) |
An interface method for probability distribution function (PDF).
Returns PDF value for x.
Reimplemented from AbstractContinuousDistribution.
StdDev |
|
private |