OSDN Git Service

(split) LDP: Change Makefile to stamp-based compilation
[linuxjm/LDP_man-pages.git] / original / man3 / cerf.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\"
3 .\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
4 .\" Distributed under GPL
5 .\" %%%LICENSE_END
6 .\"
7 .TH CERF 3 2010-09-12 "" "Linux Programmer's Manual"
8 .SH NAME
9 cerf, cerff, cerfl, cerfc, cerfcf, cerfcl \- complex error function
10 .SH SYNOPSIS
11 .B #include <complex.h>
12 .sp
13 .BI "double complex cerf(double complex " z );
14 .br
15 .BI "float complex cerff(float complex " z );
16 .br
17 .BI "long double complex cerfl(long double complex " z );
18 .sp
19 .BI "double complex cerfc(double complex " z );
20 .br
21 .BI "float complex cerfcf(float complex " z );
22 .br
23 .BI "long double complex cerfcl(long double complex " z );
24 .sp
25 Link with \fI\-lm\fP.
26 .SH DESCRIPTION
27 The (unimplemented) function
28 .BR cerf ()
29 is the complex version of the error function.
30 erf(z) = 2/sqrt(pi) * integral from 0 to z of exp(\-t*t) dt.
31 The function
32 .BR cerfc ()
33 is defined as cerfc(z) = 1\-cerf(z).
34 .\" must check 1/sqrt(2*pi) ?
35 .SH CONFORMING TO
36 The function names are reserved for future use in C99.
37 .SH AVAILABILITY
38 Not yet in glibc, as at version 2.12.
39 .\" But reserved in NAMESPACE.
40 .SH SEE ALSO
41 .BR erf (3),
42 .BR complex (7)