Interface IUnivariateDistribution
Common interface for univariate probability distributions.
Inherited Members
System.ICloneable.Clone()
Assembly: Mars.Numerics.dll
Syntax
public interface IUnivariateDistribution : IDistribution, ICloneable
Properties
|
Improve this Doc
View Source
Entropy
Gets entropy of the distribution.
Declaration
Property Value
Type |
Description |
System.Double |
The distribution's entropy. |
See Also
|
Improve this Doc
View Source
Mean
Gets the mean value for the distribution.
Declaration
Property Value
Type |
Description |
System.Double |
The distribution's mean. |
See Also
|
Improve this Doc
View Source
Gets the median value for the distribution.
Declaration
Property Value
Type |
Description |
System.Double |
The distribution's median. |
|
Improve this Doc
View Source
Mode
Gets the mode value for the distribution.
Declaration
Property Value
Type |
Description |
System.Double |
The distribution's mode. |
See Also
|
Improve this Doc
View Source
Quartiles
Gets the Quartiles for this distribution.
Declaration
DoubleRange Quartiles { get; }
Property Value
Type |
Description |
DoubleRange |
A DoubleRange object containing the first quartile
(Q1) as its minimum value, and the third quartile (Q2) as the maximum.
|
See Also
|
Improve this Doc
View Source
Support
Gets the support interval for this distribution.
Declaration
DoubleRange Support { get; }
Property Value
See Also
|
Improve this Doc
View Source
Variance
Gets the variance value for the distribution.
Declaration
Property Value
Type |
Description |
System.Double |
The distribution's variance. |
See Also
Methods
|
Improve this Doc
View Source
GetRange(Double)
Gets the distribution range within a given percentile.
Declaration
DoubleRange GetRange(double percentile)
Parameters
Type |
Name |
Description |
System.Double |
percentile |
The percentile at which the distribution ranges will be returned.
|
Returns
Type |
Description |
DoubleRange |
A DoubleRange object containing the minimum value
for the distribution value, and the third quartile (Q2) as the maximum.
|
See Also
Extension Methods
See Also