- Timestamp:
- 05/16/12 13:51:50 (13 years ago)
- Location:
- issm/branches/trunk-jpl-damage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/branches/trunk-jpl-damage
- Property svn:mergeinfo changed
/issm/trunk-jpl merged: 12169-12193,12196,12200-12251
- Property svn:mergeinfo changed
-
issm/branches/trunk-jpl-damage/src/c/modules/Krigingx/Krigingx.h
r12164 r12258 9 9 #include "../../toolkits/toolkits.h" 10 10 11 class Observations; 12 class Variogram; 11 13 12 int Krigingx(double** ppredictions,double* x, double* y, double* observations, int n_obs,double* x_interp,double* y_interp,int n_interp); 14 int Krigingx(double** ppredictions,double **perror,double* x, double* y, double* observations, int n_obs,double* x_interp,double* y_interp,int n_interp,Options* options); 15 void ProcessVariogram(Variogram **pvariogram,Options* options); 16 void GslSolve(double** pX,double* A,double* B,int n); 13 17 18 /*threading: */ 19 typedef struct{ 20 int n_interp; 21 double *x_interp; 22 double *y_interp; 23 double range; 24 Variogram *variogram; 25 Observations *observations; 26 double *predictions; 27 double *error; 28 double *percent; 29 }KrigingxThreadStruct; 30 31 void* Krigingxt(void*); 14 32 #endif /* _KRIGINGX_H */ 15
Note:
See TracChangeset
for help on using the changeset viewer.