https://github.com/cran/RandomFields
Raw File
Tip revision: 513ad2c4d40f9e25102134188eb154b18140f6a2 authored by Martin Schlather on 16 April 2017, 09:57:35 UTC
version 3.1.48
Tip revision: 513ad2c
SpherModels.h
/* SpherModels.h */
#ifndef SPHERMODELS_H
#define SPHERMODELS_H 1


// 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);
*/


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