Einzelnen Beitrag anzeigen

gammatester

Registriert seit: 6. Dez 2005
999 Beiträge
 
#7

AW: Statistik-Funktionen qnorm, pnorm?

  Alt 28. Jul 2014, 08:04
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
  Mit Zitat antworten Zitat