Changeset 12177


Ignore:
Timestamp:
05/02/12 14:33:16 (13 years ago)
Author:
Mathieu Morlighem
Message:

Added Gaussian covariance

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/c/modules/Krigingx/Krigingx.cpp

    r12176 r12177  
    4141
    4242        /*Loop over all interpolations*/
     43        printf("      interpolation progress:  %5.2lf %%",0.0);
    4344        for(int idx=0;idx<n_interp;idx++){
     45                if(idx%100==0) printf("\b\b\b\b\b\b\b%5.2lf %%",(double)idx/n_interp*100);
    4446
    4547                /*Get semivariogram vector associated to this location*/
     
    6567                xfree((void**)&GinvZ);
    6668        }
     69        printf("\b\b\b\b\b\b\b\b%5.2lf %%\n",100.0);
    6770
    6871        /*clean-up and Assign output pointer*/
     
    7578void SemiVariogram(double* gamma,double x1,double y1,double x2,double y2){
    7679
     80        /*Intermediaries*/
     81        double a,c0,c1;
     82
    7783        /*Calculate distance*/
    7884        double r=sqrt(pow(x1-x2,2.)+pow(y1-y2,2.));
    7985
    8086        /*Switch between variogram models*/
    81         switch(1){
    82                 case 1:{ /*Exponential*/
    83                         double c0=0.2;
    84                         double c1=0.8;
    85                         double a =1;
     87        switch(2){
     88                case 1:/*Exponential*/
     89                        c0=0.2;
     90                        c1=0.8;
     91                        a =1;
    8692                        *gamma = c0 + c1*(1-exp(-r/a));
    87                         return;}
     93                        return;
     94                case 2:/*Gaussian*/
     95                        c0=0.2;
     96                        c1=0.8;
     97                        a =1;
     98                        *gamma = c0 + c1*(1-exp(-pow(r,2.)/pow(a,2.)));
     99                        return;
    88100                default:
    89101                        _error_("Not implemented yet");
Note: See TracChangeset for help on using the changeset viewer.