]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/cerf.3
getent.1, intro.1, time.1, _exit.2, _syscall.2, accept.2, access.2, acct.2, adjtimex...
[thirdparty/man-pages.git] / man3 / cerf.3
CommitLineData
fea681da
MK
1.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2.\" Distributed under GPL
3.\"
7d3b7c75 4.TH CERF 3 2010-09-12 "" "Linux Programmer's Manual"
fea681da
MK
5.SH NAME
6cerf, 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 );
d39541ec 11.br
fea681da 12.BI "float complex cerff(float complex " z );
d39541ec 13.br
fea681da
MK
14.BI "long double complex cerfl(long double complex " z );
15.sp
16.BI "double complex cerfc(double complex " z );
d39541ec 17.br
fea681da 18.BI "float complex cerfcf(float complex " z );
d39541ec 19.br
fea681da
MK
20.BI "long double complex cerfcl(long double complex " z );
21.sp
20c58d70 22Link with \fI\-lm\fP.
fea681da 23.SH DESCRIPTION
7d3b7c75 24The (unimplemented) function
c13182ef 25.BR cerf ()
b5cc2ffb 26is the complex version of the error function.
2bc2f479 27erf(z) = 2/sqrt(pi) * integral from 0 to z of exp(\-t*t) dt.
b5cc2ffb 28The function
c13182ef 29.BR cerfc ()
b5cc2ffb 30is defined as cerfc(z) = 1\-cerf(z).
fea681da 31.\" must check 1/sqrt(2*pi) ?
47297adb 32.SH CONFORMING TO
68e1685c 33The function names are reserved for future use in C99.
fea681da 34.SH AVAILABILITY
7d3b7c75 35Not yet in glibc, as at version 2.12.
fea681da 36.\" But reserved in NAMESPACE.
47297adb 37.SH SEE ALSO
fea681da 38.BR erf (3),
a8bda636 39.BR complex (7)