Ignore:
Timestamp:
05/16/12 13:51:50 (13 years ago)
Author:
cborstad
Message:

merged trunk-jpl into branches/trunk-jpl-damage through revision 12254

Location:
issm/branches/trunk-jpl-damage
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • issm/branches/trunk-jpl-damage

  • issm/branches/trunk-jpl-damage/src/c/modules/Krigingx/Krigingx.h

    r12164 r12258  
    99#include "../../toolkits/toolkits.h"
    1010
     11class Observations;
     12class Variogram;
    1113
    12 int Krigingx(double** ppredictions,double* x, double* y, double* observations, int n_obs,double* x_interp,double* y_interp,int n_interp);
     14int  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);
     15void ProcessVariogram(Variogram **pvariogram,Options* options);
     16void GslSolve(double** pX,double* A,double* B,int n);
    1317
     18/*threading: */
     19typedef 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
     31void* Krigingxt(void*);
    1432#endif /* _KRIGINGX_H */
    15 
Note: See TracChangeset for help on using the changeset viewer.