Mercurial > hg > ltpda
view m-toolbox/classes/+utils/@math/Normcdf.m @ 51:9d5c88356247 database-connection-manager
Make unit tests database connection parameters configurable
author | Daniele Nicolodi <nicolodi@science.unitn.it> |
---|---|
date | Wed, 07 Dec 2011 17:24:37 +0100 |
parents | f0afece42f48 |
children |
line wrap: on
line source
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% % % Compute Normal cumulative distribution function % % CALL % % p = Normcdf(x,mu,sigma); % % % INPUT % % - x, data % - mu, distribution mean % - sigma, distribution standard deviation % % References: % [1] M. Abramowitz and I. A. Stegun, "Handbook of Mathematical % Functions", Government Printing Office, 1964, 26.2. % % % L Ferraioli 14-02-2011 % % $Id: Normcdf.m,v 1.1 2011/02/14 16:08:25 luigi Exp $ % %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% function p = Normcdf(x,mu,sigma) z = (x-mu)./sigma; p = 0.5*erfc(-z./sqrt(2)); end