HTBasic Help
×
Menu
Index
F_gauss
Probability density for Gaussian distribution.
 
Loading        LOADSUB ALL FROM "ERF.HTS"
or LOADSUB FROM "MATHLIB.HTS"
 
Usage                REAL X,M,S,Y
Y=FNF_gauss(M,S,X)
 
Description                
FNF_gauss returns the value of the probability density function of the Gaussian, or normal, probability distribution of mean m and standard deviation s (represented below by ) at x, f(x;m,σ). F(x;m,σ) is defined by the expression
F is defined for all values of x and m and for positive values of .
 
     f(x;0,σ)
Errors                
FNF_gauss causes an HTBasic error if its arguments are not all of type REAL or if the value of S is negative or zero.
 
See Also
P_gauss, Q_gauss