Changeset 15100 for issm/trunk-jpl/src/c/classes/kriging/PowerVariogram.cpp
- Timestamp:
- 05/24/13 13:02:48 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/classes/kriging/PowerVariogram.cpp
r15099 r15100 48 48 /*FUNCTION PowerVariogram::Echo {{{*/ 49 49 void PowerVariogram::Echo(void){ 50 _print String_("PowerVariogram" << "\n");51 _print String_(" nugget: " << this->nugget << "\n");52 _print String_(" slope : " << this->slope << "\n");53 _print String_(" power : " << this->power << "\n");50 _printf_("PowerVariogram" << "\n"); 51 _printf_(" nugget: " << this->nugget << "\n"); 52 _printf_(" slope : " << this->slope << "\n"); 53 _printf_(" power : " << this->power << "\n"); 54 54 } 55 55 /*}}}*/ … … 85 85 gamma = this->nugget + this->slope*pow(h,this->power); 86 86 87 //if(h>1000) _print String_("gamma = " << gamma << " h=" << h << "\n");87 //if(h>1000) _printf_("gamma = " << gamma << " h=" << h << "\n"); 88 88 return gamma; 89 89 }
Note:
See TracChangeset
for help on using the changeset viewer.