Quellcode für Pascal/Delphi-Implentationen der Quantilfunktion der Normalverteilung findest Du im Teil
Statistische Verteilungen meines
AMath-Pakets (für 80-Bit-Extended)
Delphi-Quellcode:
function normal_invx(mu, sd, y: extended): extended;
{-Return the functional inverse of normal (Gaussian) distribution}
{ with mean mu and standard deviation sd > 0, 0 < y < 1.}
bzw.
DAMath (für 64-Bit-Versionen mit Double).
Delphi-Quellcode:
function normal_inv(mu, sd, y: double): double;
{-Return the functional inverse of the normal (Gaussian) distribution}
{ with mean mu and standard deviation sd > 0, 0 < y < 1.}
Gruß Gammatester