ierf.h
1/***************************************************************************
2 *
3 * Copyright (C) 1999 by Willem van Straten
4 * Licensed under the Academic Free License version 2.1
5 *
6 ***************************************************************************/
7// psrchive/Util/genutil/ierf.h
8
9#ifndef __IERF_H
10#define __IERF_H
11
12#define MAX_ITERATIONS 40 /* maximum iterations toward answer */
13
14#ifdef __cplusplus
15extern "C" {
16#endif
17
18 /* Computes the inverse error function using the Newton-Raphson method */
19 double ierf (double erfx);
20
21
22#ifdef __cplusplus
23 }
24#endif
25
26#endif
27

Generated using doxygen 1.14.0