Changeset 12177
- Timestamp:
- 05/02/12 14:33:16 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/Krigingx/Krigingx.cpp
r12176 r12177 41 41 42 42 /*Loop over all interpolations*/ 43 printf(" interpolation progress: %5.2lf %%",0.0); 43 44 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); 44 46 45 47 /*Get semivariogram vector associated to this location*/ … … 65 67 xfree((void**)&GinvZ); 66 68 } 69 printf("\b\b\b\b\b\b\b\b%5.2lf %%\n",100.0); 67 70 68 71 /*clean-up and Assign output pointer*/ … … 75 78 void SemiVariogram(double* gamma,double x1,double y1,double x2,double y2){ 76 79 80 /*Intermediaries*/ 81 double a,c0,c1; 82 77 83 /*Calculate distance*/ 78 84 double r=sqrt(pow(x1-x2,2.)+pow(y1-y2,2.)); 79 85 80 86 /*Switch between variogram models*/ 81 switch( 1){82 case 1: {/*Exponential*/83 doublec0=0.2;84 doublec1=0.8;85 doublea =1;87 switch(2){ 88 case 1:/*Exponential*/ 89 c0=0.2; 90 c1=0.8; 91 a =1; 86 92 *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; 88 100 default: 89 101 _error_("Not implemented yet");
Note:
See TracChangeset
for help on using the changeset viewer.