cerf, cerfc - complex error functions
Contents
Copying
Copyright (c) 2012 Massachusetts Institute of Technology
Copyright (c) 2013 Forschungszentrum Juelich GmbH
Software: MIT License.
This documentation: Creative Commons Attribution Share Alike.
perl v5.38.2 2024-04-22 cerf(3)
Description
The function cerf is the complex version of the error function: erf(z) = 2/sqrt(pi) * integral from 0 to
z of exp(-t*t) dt.
The complementary complex error function cerfc is defined as erfc(z) = 1-cerf(z).
Name
cerf, cerfc - complex error functions
See Also
The computations are based on Faddeeva's function w_of_z(3).
Other complex error functions in libcerf: w_of_z(3), dawson(3), voigt(3), erfcx(3), erfi(3).
The real error function comes with recent versions of glibc, as requested by the C99 standard: erf(3)
Homepage: http://apps.jcns.fz-juelich.de/libcerfSynopsis
#include<cerf.h>
double_Complexcerf(double_Complexz);double_Complexcerfc(double_Complexz);