Méthode | Description | |
---|---|---|
Clone ( ) : object |
Creates a new object that is a copy of the current instance.
|
|
DistributionFunction ( double x ) : double |
Gets the cumulative distribution function (cdf) for this distribution evaluated at point The Cumulative Distribution Function (CDF) describes the cumulative probability that a given value or any value smaller than it will occur. |
|
ProbabilityDensityFunction ( double x ) : double |
Gets the probability density function (pdf) for this distribution evaluated at point The Probability Density Function (PDF) describes the probability that a given value |
|
ToString ( string format, IFormatProvider formatProvider ) : string |
Returns a System.String that represents this instance.
|
|
TrapezoidalDistribution ( [ a, [ b, [ c, [ d, [ n1, [ n3 ) : System |
Creates a new trapezoidal distribution.
|
public DistributionFunction ( double x ) : double | ||
x | double | A single point in the distribution range. |
Résultat | double |
public ProbabilityDensityFunction ( double x ) : double | ||
x | double | A single point in the distribution range. |
Résultat | double |
public ToString ( string format, IFormatProvider formatProvider ) : string | ||
format | string | |
formatProvider | IFormatProvider | |
Résultat | string |
public TrapezoidalDistribution ( [ a, [ b, [ c, [ d, [ n1, [ n3 ) : System | ||
a | [ | The minimum value a. |
b | [ | The beginning of the stability region b. |
c | [ | The end of the stability region c. |
d | [ | The maximum value d. |
n1 | [ | The growth slope between points |
n3 | [ | The growth slope between points |
Résultat | System |