https://github.com/cran/RandomFields
Raw File
Tip revision: 3e7d0eda861a94bf29844315f049e11eda363007 authored by Martin Schlather on 30 October 2013, 00:00:00 UTC
version 2.0.66
Tip revision: 3e7d0ed
auxiliary.h

#ifndef AUXILIARY_H
#define AUXILIARY_H 1

#include "basic.h"

extern "C" void vectordist(double *v, int *dim, double *dist, int *diag); 
extern "C" void sleepMilli(int *milli);

extern "C" void I0ML0(double *x, int *n);
double I0mL0(double x);
extern "C" double struve(double x, double nu,  double factor_sign, bool expscaled);
extern "C" void StruveH(double *x, double *nu);
extern "C" void StruveL(double *x, double *nu, int * expScaled);

extern "C" void ordering(double *d, int len, int dim, int *pos);
extern "C" void Ordering(double *d, int *len, int *dim, int *pos);

bool is_diag(double *aniso, int dim);

#endif /* AUXILIARY_H */




back to top