xref: /freebsd/lib/msun/man/erf.3 (revision 16c3d7e1fa150ee136b910448cf431e8deab5293)
13a8617a8SJordan K. Hubbard.\" Copyright (c) 1985, 1991 Regents of the University of California.
23a8617a8SJordan K. Hubbard.\" All rights reserved.
33a8617a8SJordan K. Hubbard.\"
43a8617a8SJordan K. Hubbard.\" Redistribution and use in source and binary forms, with or without
53a8617a8SJordan K. Hubbard.\" modification, are permitted provided that the following conditions
63a8617a8SJordan K. Hubbard.\" are met:
73a8617a8SJordan K. Hubbard.\" 1. Redistributions of source code must retain the above copyright
83a8617a8SJordan K. Hubbard.\"    notice, this list of conditions and the following disclaimer.
93a8617a8SJordan K. Hubbard.\" 2. Redistributions in binary form must reproduce the above copyright
103a8617a8SJordan K. Hubbard.\"    notice, this list of conditions and the following disclaimer in the
113a8617a8SJordan K. Hubbard.\"    documentation and/or other materials provided with the distribution.
12fbbd9655SWarner Losh.\" 3. Neither the name of the University nor the names of its contributors
133a8617a8SJordan K. Hubbard.\"    may be used to endorse or promote products derived from this software
143a8617a8SJordan K. Hubbard.\"    without specific prior written permission.
153a8617a8SJordan K. Hubbard.\"
163a8617a8SJordan K. Hubbard.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
173a8617a8SJordan K. Hubbard.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
183a8617a8SJordan K. Hubbard.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
193a8617a8SJordan K. Hubbard.\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
203a8617a8SJordan K. Hubbard.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
213a8617a8SJordan K. Hubbard.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
223a8617a8SJordan K. Hubbard.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
233a8617a8SJordan K. Hubbard.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
243a8617a8SJordan K. Hubbard.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
253a8617a8SJordan K. Hubbard.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
263a8617a8SJordan K. Hubbard.\" SUCH DAMAGE.
273a8617a8SJordan K. Hubbard.\"
28*16c3d7e1SGordon Bergling.Dd June 23, 2024
293a8617a8SJordan K. Hubbard.Dt ERF 3
30a307d598SRuslan Ermilov.Os
313a8617a8SJordan K. Hubbard.Sh NAME
323a8617a8SJordan K. Hubbard.Nm erf ,
337a15a32aSJordan K. Hubbard.Nm erff ,
343b5e0d0fSSteve Kargl.Nm erfl ,
357a15a32aSJordan K. Hubbard.Nm erfc ,
363b5e0d0fSSteve Kargl.Nm erfcf ,
373b5e0d0fSSteve Kargl.Nm erfcl
383a8617a8SJordan K. Hubbard.Nd error function operators
3964890443SBruce Evans.Sh LIBRARY
4064890443SBruce Evans.Lb libm
413a8617a8SJordan K. Hubbard.Sh SYNOPSIS
4232eef9aeSRuslan Ermilov.In math.h
433a8617a8SJordan K. Hubbard.Ft double
443a8617a8SJordan K. Hubbard.Fn erf "double x"
457a15a32aSJordan K. Hubbard.Ft float
467a15a32aSJordan K. Hubbard.Fn erff "float x"
473b5e0d0fSSteve Kargl.Ft "long double"
483b5e0d0fSSteve Kargl.Fn erfl "long double x"
493a8617a8SJordan K. Hubbard.Ft double
503a8617a8SJordan K. Hubbard.Fn erfc "double x"
517a15a32aSJordan K. Hubbard.Ft float
527a15a32aSJordan K. Hubbard.Fn erfcf "float x"
533b5e0d0fSSteve Kargl.Ft "long double"
543b5e0d0fSSteve Kargl.Fn erfcl "long double x"
553a8617a8SJordan K. Hubbard.Sh DESCRIPTION
563a8617a8SJordan K. HubbardThese functions calculate the error function of
573a8617a8SJordan K. Hubbard.Fa x .
583a8617a8SJordan K. Hubbard.Pp
593a8617a8SJordan K. HubbardThe
603b5e0d0fSSteve Kargl.Fn erf ,
613b5e0d0fSSteve Kargl.Fn erff ,
623b5e0d0fSSteve Kargland
633b5e0d0fSSteve Kargl.Fn erfl
647a15a32aSJordan K. Hubbardfunctions calculate the error function of x; where
6546eea498SRuslan Ermilov.Bd -ragged -offset indent
663a8617a8SJordan K. Hubbard.if n \{\
671a0a9345SRuslan Ermiloverf(x) = 2/sqrt(pi)\(**\|integral from 0 to x of exp(\-t\(**t) dt.
681a0a9345SRuslan Ermilov\}
693a8617a8SJordan K. Hubbard.if t \{\
703a8617a8SJordan K. Hubbarderf\|(x) :=
711a0a9345SRuslan Ermilov(2/\(sr\(*p)\|\(is\d\s8\z0\s10\u\u\s8x\s10\d\|exp(\-t\u\s82\s10\d)\|dt.
721a0a9345SRuslan Ermilov\}
733a8617a8SJordan K. Hubbard.Ed
743a8617a8SJordan K. Hubbard.Pp
753a8617a8SJordan K. HubbardThe
763b5e0d0fSSteve Kargl.Fn erfc ,
773b5e0d0fSSteve Kargl.Fn erfcf ,
783b5e0d0fSSteve Kargland
793b5e0d0fSSteve Kargl.Fn erfcl
807a15a32aSJordan K. Hubbardfunctions calculate the complementary error function of
813a8617a8SJordan K. Hubbard.Fa x ;
823a8617a8SJordan K. Hubbardthat is
833a8617a8SJordan K. Hubbard.Fn erfc
843a8617a8SJordan K. Hubbardsubtracts the result of the error function
853a8617a8SJordan K. Hubbard.Fn erf x
863a8617a8SJordan K. Hubbardfrom 1.0.
873a8617a8SJordan K. Hubbard.Sh SEE ALSO
883a8617a8SJordan K. Hubbard.Xr math 3
89*16c3d7e1SGordon Bergling.Sh STANDARDS
90*16c3d7e1SGordon BerglingThe
91*16c3d7e1SGordon Bergling.Fn erf ,
92*16c3d7e1SGordon Bergling.Fn erff ,
93*16c3d7e1SGordon Bergling.Fn erfl ,
94*16c3d7e1SGordon Bergling.Fn erfc ,
95*16c3d7e1SGordon Bergling.Fn erfcf
96*16c3d7e1SGordon Berglingand
97*16c3d7e1SGordon Bergling.Fn erfcl
98*16c3d7e1SGordon Berglingfunctions conform to
99*16c3d7e1SGordon Bergling.St -isoC-99 .
1003a8617a8SJordan K. Hubbard.Sh HISTORY
1013a8617a8SJordan K. HubbardThe
1023a8617a8SJordan K. Hubbard.Fn erf
1033a8617a8SJordan K. Hubbardand
1043a8617a8SJordan K. Hubbard.Fn erfc
1053a8617a8SJordan K. Hubbardfunctions appeared in
1063a8617a8SJordan K. Hubbard.Bx 4.3 .
107