Gets the median of the distribution.

Namespace: Meta.Numerics.Statistics.Distributions
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public override double Median { get; }
Public Overrides ReadOnly Property Median As Double
	Get
public:
virtual property double Median {
	double get () override;
}
abstract Median : float with get
override Median : float with get

Remarks

The median is the point with equal integrated probability above and below, i.e. with P(x1) = 0.5.

See Also