https://github.com/cran/RandomFields
Revision 6eca414de4c835af2032db4cae6c05e9cc684529 authored by Martin Schlather on 23 April 2016, 15:04:07 UTC, committed by cran-robot on 23 April 2016, 15:04:07 UTC
1 parent bd29881
Raw File
Tip revision: 6eca414de4c835af2032db4cae6c05e9cc684529 authored by Martin Schlather on 23 April 2016, 15:04:07 UTC
version 3.1.11
Tip revision: 6eca414
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 VARIABLE_IS_NOT_USED *cov, range_type *range);

  void Multiquad(double *x, cov_model *cov, double *v);
  void rangeMultiquad(cov_model VARIABLE_IS_NOT_USED *cov, range_type *range);
  /*
  void kappa_choquet(int i, cov_model *cov, int *nr, int *nc);
  void Choquet(double *x, cov_model *cov, double *v);
  void rangeChoquet(cov_model VARIABLE_IS_NOT_USED *cov, range_type *range);
  int checkChoquet(cov_model *cov);
  */
#ifdef __cplusplus
}
#endif


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