Is there any function that allow me to compute the CDF probability of a normal distribution, given a mean and sigma ? i.e. for example P( X < x ) given the normal distribution with $\bar{x}$ and $\sigma$.
I think boost have this, but I think that it is just for the standard normal distribution.
You scale — any N(m, s) can be turned into N(0,1) by dividing by s and subtracting m. So all you need is a cdf for N(0,1) which is provided by a number of libraries.
Here is a simple R example: