File: fff_specfun.h

package info (click to toggle)
nipy 0.6.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 7,352 kB
  • sloc: python: 39,115; ansic: 30,931; makefile: 210; sh: 93
file content (25 lines) | stat: -rw-r--r-- 350 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*!
  \file fff_specfun.h
  \brief special functions needed by fff's C routines.
  \author Alexis Roche, Gael Varoquaux
  \date 2008, 2009
  \licence BSD

*/


#ifndef FFF_SPECFUN
#define FFF_SPECFUN

#ifdef __cplusplus
extern "C" {
#endif

  extern double fff_psi(double x);
  extern double fff_gamln(double x);

#ifdef __cplusplus
}
#endif

#endif