https://github.com/cran/RandomFields
Raw File
Tip revision: f5e4e9ee01c1569e39dffdd0295f7a2131c83516 authored by Martin Schlather on 13 January 2015, 00:00:00 UTC
version 3.0.55
Tip revision: f5e4e9e
SpherModels.h
/* SpherModels.h */
#ifndef SPHERMODELS_H
#define SPHERMODELS_H 1

#ifdef __cplusplus
extern "C"
{
#endif

  // declaration of functions
  void SinePower(double *x, cov_model *cov, double *v);
  void rangeSinePower(cov_model *cov, range_type *range);

  void Eq16(double *x, cov_model *cov, double *v);
  void rangeEq16(cov_model VARIABLE_IS_NOT_USED *cov, range_type *range);

  
#ifdef __cplusplus
}
#endif


#endif /* SpherModels.h */
back to top