OSDN Git Service

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