~ubuntu-branches/debian/sid/octave3.0/sid

« back to all changes in this revision

Viewing changes to scripts/statistics/distributions/stdnormal_cdf.m

  • Committer: Bazaar Package Importer
  • Author(s): Rafael Laboissiere
  • Date: 2007-12-23 16:04:15 UTC
  • Revision ID: james.westby@ubuntu.com-20071223160415-n4gk468dihy22e9v
Tags: upstream-3.0.0
ImportĀ upstreamĀ versionĀ 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Copyright (C) 1995, 1996, 1997, 1998, 2000, 2002, 2004, 2005, 2006,
 
2
##               2007 Kurt Hornik
 
3
##
 
4
## This file is part of Octave.
 
5
##
 
6
## Octave is free software; you can redistribute it and/or modify it
 
7
## under the terms of the GNU General Public License as published by
 
8
## the Free Software Foundation; either version 3 of the License, or (at
 
9
## your option) any later version.
 
10
##
 
11
## Octave is distributed in the hope that it will be useful, but
 
12
## WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
14
## General Public License for more details.
 
15
##
 
16
## You should have received a copy of the GNU General Public License
 
17
## along with Octave; see the file COPYING.  If not, see
 
18
## <http://www.gnu.org/licenses/>.
 
19
 
 
20
## -*- texinfo -*-
 
21
## @deftypefn {Function File} {} stdnormal_cdf (@var{x})
 
22
## For each component of @var{x}, compute the CDF of the standard normal
 
23
## distribution at @var{x}.
 
24
## @end deftypefn
 
25
 
 
26
## Author: KH <Kurt.Hornik@wu-wien.ac.at>
 
27
## Description: CDF of the standard normal distribution
 
28
 
 
29
function cdf = stdnormal_cdf (x)
 
30
 
 
31
  if (nargin != 1)
 
32
    print_usage ();
 
33
  endif
 
34
 
 
35
  sz = size (x);
 
36
  if (numel(x) == 0)
 
37
    error ("stdnormal_cdf: x must not be empty");
 
38
  endif
 
39
 
 
40
  cdf = (ones (sz) + erf (x / sqrt (2))) / 2;
 
41
 
 
42
endfunction
 
43
 
 
44
 
 
45
 
 
46