Changeset 882 in Sophya for trunk/SophyaLib/TArray/matharr.cc
- Timestamp:
- Apr 11, 2000, 3:50:03 PM (25 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/TArray/matharr.cc
r813 r882 3 3 4 4 #include "machdefs.h" 5 #include < stdlib.h>5 #include <math.h> 6 6 #include "matharr.h" 7 7 … … 116 116 mean /= dsz; 117 117 sig = sig/dsz - mean*mean; 118 #if !defined(OS_LINUX) && !defined (__KCC__) 118 119 if (sig >= 0.) sig = sqrt(sig); 120 #else 121 // va comprendre pourquoi g++ (sur Linux) veut ca pour faire la generation 122 // de template !!!! 123 if (sig >= 0.) sig = _Sqrt_(sig); 124 #endif 119 125 return(mean); 120 126 }
Note:
See TracChangeset
for help on using the changeset viewer.