Changeset 2316
- Timestamp:
- Aug 20, 2010, 6:04:49 AM (13 years ago)
- Location:
- trunk/yat/statistics
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/statistics/Fisher.cc
r2210 r2316 93 93 // If a column sum or a row sum is zero, the table is nonsense 94 94 if ((a==0 || d==0) && (c==0 || b==0)){ 95 throw utility::runtime_error(" runtime_error:Table in Fisher is not valid\n");95 throw utility::runtime_error("Table in Fisher is not valid\n"); 96 96 } 97 97 a_ = a; -
trunk/yat/statistics/Fisher.h
r2119 r2316 25 25 */ 26 26 27 #include "Score.h"28 29 #include <cmath>30 31 27 namespace theplu { 32 28 namespace yat { 33 namespace utility {34 class vector;35 }36 29 namespace statistics { 37 30 /**
Note: See TracChangeset
for help on using the changeset viewer.