https://github.com/cran/RandomFields
Raw File
Tip revision: f19c5f1146d16fe5a87883e4d7cc55abcc445d0f authored by Martin Schlather on 05 September 2005, 00:00:00 UTC
version 1.3.3
Tip revision: f19c5f1
Hyperfcts.h
#ifndef Hyperfcts_H
#define Hyperfcts_H 1

double co(double *x, double *p, int effectivedim);
int getcutoffparam_co(covinfo_type *kc,  param_type q, int instance);
bool alternativeparam_co(covinfo_type *kc, int instance);
void range_co(int dim, int *index, double* range);
void info_co(double *p, int *maxdim, int *CEbadlybehaved);
int checkNinit_co(covinfo_arraytype keycov, covlist_type covlist, 
		  int remaining_covlistlength, SimulationType method);

double Stein(double *x, double *p, int effectivedim);
int getintrinsicparam_Stein(covinfo_type *kc, param_type q, int instance);
bool alternativeparam_Stein(covinfo_type *kc, int instance);
void range_Stein(int dim, int *index, double* range);
void info_Stein(double *p, int *maxdim, int *CEbadlybehaved);
int checkNinit_Stein(covinfo_arraytype keycov, covlist_type covlist, 
		     int remaining_covlistlength, SimulationType method);

#endif /* Hyperfcts_H */
 
back to top