You are here: Symbol Reference > Dew Namespace > Dew.Math Namespace > Dew.Math.Units Namespace > Classes > Probabilities Class > Probabilities Methods > BetaPDF Method > Probabilities.BetaPDF Method (double, double, double)
Dew Math for .NET
ContentsIndexHome
Example

Calculate Beta distribution (a=3 and b= 2.1) PDF and CDF for x =0.55

using Dew.Probability; using Dew.Probability.Units; namespace Dew.Examples { void Example() { double pdf = BetaPDF(0.55, 3.0, 2.1); double cdf = BetaCDF(0.55, 3.0, 2.1); } }
Copyright (c) 1999-2024 by Dew Research. All rights reserved.