https://github.com/cran/RandomFields
Raw File
Tip revision: e7b694afb4a59ee314a64b737a5f872a2b69cee4 authored by Martin Schlather on 12 November 2004, 00:00:00 UTC
version 1.1.24
Tip revision: e7b694a
MPPFcts.h
#ifndef MppFcts_H
#define MppFcts_H 1
extern Real MPP_APPROXZERO;

void cone_init(mpp_storage *s, int v);
void cone(mpp_storage *s, int v, Real *min, Real *max,
	  mppmodel *model );
int checkcone(Real *param, int timespacedim, SimulationType method);
SimulationType methodcone(int spacedim, bool grid);
void rangecone(int spatialdim, int *index, Real* range);

void gaussmpp_init(mpp_storage *s, int v);
void gaussmpp(mpp_storage *s, int v, Real *min, Real *max,
	  mppmodel *model );

void circular_init(mpp_storage *s, int v);
void circularMpp(mpp_storage *s, int v, Real *min, Real *max,
	  mppmodel *model );

void spherical_init(mpp_storage *s, int v);
void sphericalMpp(mpp_storage *s, int v, Real *min, Real *max,
	  mppmodel *model );

#endif /* MppFcts_H */
 
back to top