Changeset 1463 for trunk/yat/normalization
- Timestamp:
- Sep 1, 2008, 11:34:15 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/normalization/ColumnNormalizer.h
r1462 r1463 23 23 */ 24 24 25 #include "yat/utility/matrix.h" 26 25 27 namespace theplu { 26 28 namespace yat { 27 namespace utility {28 class Matrix;29 }30 29 namespace normalization { 31 30 … … 44 43 functor used to normalize each column 45 44 */ 46 typedef T normalizer_type 45 typedef T normalizer_type; 47 46 48 47 /** … … 73 72 { 74 73 for (size_t i=0; i<matrix.rows(); ++i) 75 normalizer_(result.begin_co nst_column(i), result.end_const_columns(i),74 normalizer_(result.begin_column(i), result.end_column(i), 76 75 result.begin_column(i)); 77 76
Note: See TracChangeset
for help on using the changeset viewer.