https://github.com/cran/RandomFields
Revision 874b82c3a0dd003dfee489f8e4cecf60c4149d18 authored by Martin Schlather on 14 July 2004, 00:00:00 UTC, committed by Gabor Csardi on 14 July 2004, 00:00:00 UTC
1 parent 6c38ebf
Raw File
Tip revision: 874b82c3a0dd003dfee489f8e4cecf60c4149d18 authored by Martin Schlather on 14 July 2004, 00:00:00 UTC
version 1.1.13
Tip revision: 874b82c
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