I am trying to access the Median property of the Negative Binomial Distribution via MathNet.Numerics;
var NegBin = new MathNet.Numerics.Distributions.NegativeBinomial(30, 0.03);
var median = NegBin.Median
But I keep getting a 'NegBin.Median' threw an exception of type 'System.NotSupportedException'.
Does MathNet.Numerics not calculate the Median here? I am using version 4.9.0.
Apparently not: