Example macro showing some major probability density functions in ROOT.
The macro shows four of them with respect to their two variables. In order to run the macro type:
TF2 *f1a =
new TF2(
"f1a",
"ROOT::Math::cauchy_pdf(x, y)",0,10,0,10);
TF2 *f2a =
new TF2(
"f2a",
"ROOT::Math::chisquared_pdf(x,y)",0,20, 0,20);
TF2 *f3a =
new TF2(
"f3a",
"ROOT::Math::gaussian_pdf(x,y)",0,10,0,5);
TF2 *f4a =
new TF2(
"f4a",
"ROOT::Math::tdistribution_pdf(x,y)",0,10,0,5);
}
virtual void SetLineWidth(Width_t lwidth)
Set the line width.
A 2-Dim function with parameters.
virtual void Draw(Option_t *option="")
Draw this function with its current attributes.
- Author
- Andras Zsenei
Definition in file mathcoreStatFunc.C.