TPCCLIB
Loading...
Searching...
No Matches
tpcfunc.h
Go to the documentation of this file.
1
5#ifndef _TPCFUNC_H_
6#define _TPCFUNC_H_
7/*****************************************************************************/
8
9/*****************************************************************************/
10#include "tpcclibConfig.h"
11/*****************************************************************************/
12#include <stdio.h>
13#include <stdlib.h>
14#include <string.h>
15#include <math.h>
16/*****************************************************************************/
17#include "tpcextensions.h"
18#include "tpcmodels.h"
19/*****************************************************************************/
20
21/*****************************************************************************/
22/* func */
23extern int mfEvalY(
24 const char *fid, const int parNr, const double *p,
25 const int sampleNr, const double *x, double *y,
26 const int verbose
27);
28extern int mfEvalInt(
29 const char *fid, const int parNr, const double *p,
30 const int sampleNr, const double *x, double *i,
31 const int verbose
32);
33extern int mfEval2ndInt(
34 const char *fid, const int parNr, const double *p,
35 const int sampleNr, const double *x, double *i,
36 const int verbose
37);
38extern int mfEvalFrameY(
39 const char *fid, const int parNr, const double *p,
40 const int sampleNr, const double *x1, const double *x2, double *y,
41 const int verbose
42);
43extern int mfEvalIntToInf(
44 const char *fid, const int parNr, const double *p,
45 const double x, double *v,
46 const int verbose
47);
48/*****************************************************************************/
49
50/*****************************************************************************/
51/* rgamma */
52extern double igam(double a, double x);
53extern double igamc(double a, double x);
54/*****************************************************************************/
55
56/*****************************************************************************/
57#endif /* TPCFUNC */
Header file for library libtpcextensions.
double igam(double a, double x)
Definition rgamma.c:29
int mfEvalY(const char *fid, const int parNr, const double *p, const int sampleNr, const double *x, double *y, const int verbose)
Definition func.c:26
int mfEval2ndInt(const char *fid, const int parNr, const double *p, const int sampleNr, const double *x, double *i, const int verbose)
Definition func.c:700
double igamc(double a, double x)
Definition rgamma.c:70
int mfEvalIntToInf(const char *fid, const int parNr, const double *p, const double x, double *v, const int verbose)
Definition func.c:969
int mfEvalFrameY(const char *fid, const int parNr, const double *p, const int sampleNr, const double *x1, const double *x2, double *y, const int verbose)
Definition func.c:790
int mfEvalInt(const char *fid, const int parNr, const double *p, const int sampleNr, const double *x, double *i, const int verbose)
Definition func.c:436
Header file for libtpcmodels.