Gaussian PDF
y=hermite_pdf(x)
a matrix of doubles
a matrix of doubles, the probability density
Computes the Gaussian probability distribution function:
for any real value x. Its integral is equal to 1.
x=linspace(-4,4,1000); y=hermite_pdf(x); scf(); plot(x,y) xtitle("Gaussian distribution","x","f(x)")