https://github.com/cran/RandomFields
Revision bb0d8f1ef9392ca85087c614912a8889c4717f89 authored by Martin Schlather on 20 March 2006, 00:00:00 UTC, committed by Gabor Csardi on 20 March 2006, 00:00:00 UTC
1 parent ce8a114
Raw File
Tip revision: bb0d8f1ef9392ca85087c614912a8889c4717f89 authored by Martin Schlather on 20 March 2006, 00:00:00 UTC
version 1.3.24
Tip revision: bb0d8f1
extremes.h
#ifndef extremes_H
#define extremes 1
#include "RFsimu.h"

extern double EXTREMES_STANDARDMAX;

#ifdef CPP2C 
EXTERN void InitMaxStableRF(double *x, double *y, double *z, int *dim, int *lx, 
			    int *grid, int *covnr, double *ParamList, int *nParam, 
			    int *method, 
			    int *distr,
			    int *keyNr,
			    int *error);

EXTERN void DoMaxStableRF(int *keyNr, double *res, int *error); 


#else
extern void InitMaxStableRF(double *x, double *y, double *z, int *dim, int *lx, 
			    int *grid, int *covnr, double *ParamList, int *nParam, 
			    int *method, 
			    int *distr,
			    int *keyNr,
			    int *error);

extern void DoMaxStableRF(int *keyNr, double *res, int *error);
#endif /* CPP2C */

#endif /* extremes */
back to top