You are here: Symbol Reference > Probabilities Namespace > Functions > Probabilities.BetaPDF Function
MtxVec VCL
ContentsIndex
Example

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

Uses Probabilities; procedure Example; var pdf,cdf: double; begin pdf := BetaPDF(0.55, 3.0, 2.1); cdf := BetaCDF(0.55, 3.0, 2.1); end;
#include "Probabilities.hpp" void __fastcall Example() { double pdf = BetaPDF(0.55, 3.0, 2.1); double cdf = BetaCDF(0.55, 3.0, 2.1); }
Copyright (c) 1999-2025 by Dew Research. All rights reserved.