https://github.com/cran/RandomFields
Raw File
Tip revision: 61bd8f8963fbc3ea040920b5bc353f2710de8dfc authored by Martin Schlather on 25 October 2005, 00:00:00 UTC
version 1.3.7
Tip revision: 61bd8f8
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 );
int checkcone(double *param, int timespacedim, SimulationType method);
SimulationType methodcone(int spacedim, bool grid);
void rangecone(int spatialdim, int *index, double* range);
void infocone(double *p, int *maxdim, int *CEbadlybehaved);

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