https://github.com/cran/RandomFields
Revision 2b4a83d81f11e64cd682f07cb4f5d022aed792fc authored by Martin Schlather on 03 April 2006, 00:00:00 UTC, committed by Gabor Csardi on 03 April 2006, 00:00:00 UTC
1 parent bb0d8f1
Raw File
Tip revision: 2b4a83d81f11e64cd682f07cb4f5d022aed792fc authored by Martin Schlather on 03 April 2006, 00:00:00 UTC
version 1.3.26
Tip revision: 2b4a83d
MPPFcts.h
#ifndef MppFcts_H
#define MppFcts_H 1
extern double MPP_APPROXZERO;

void cone_init(mpp_storage *s, int dim, param_type param);
void cone(mpp_storage *s, double *min, double *max,
	  mppmodel *model );

void gaussmpp_init(mpp_storage *s, int dim, param_type param);
void gaussmpp(mpp_storage *s, double *min, double *max,
	  mppmodel *model );

void circular_init(mpp_storage *s, int dim, param_type param);
void circularMpp(mpp_storage *s, double *min, double *max,
	  mppmodel *model );

void spherical_init(mpp_storage *s, int dim, param_type param);
void sphericalMpp(mpp_storage *s, double *min, double *max,
	  mppmodel *model );

#endif /* MppFcts_H */
 
back to top