Changeset 1453 for trunk/yat/normalization
- Timestamp:
- Aug 29, 2008, 5:41:09 PM (15 years ago)
- Location:
- trunk/yat/normalization
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/normalization/QuantileNormalizer.cc
r1447 r1453 31 31 #include "yat/utility/VectorConstView.h" 32 32 33 #include <cassert> 34 33 35 namespace theplu { 34 36 namespace yat { … … 38 40 utility::Matrix& result) const 39 41 { 42 assert(data.rows()==result.rows()); 40 43 utility::Matrix data_copy(data); 41 44 -
trunk/yat/normalization/QuantileNormalizer.h
r1447 r1453 44 44 the same distribution of data, and the rank of an element 45 45 within a column is preserved in the normalization. 46 47 \note Number of rows in \a matrix and \a result must match. 46 48 */ 47 49 void operator()(const utility::Matrix& matrix,
Note: See TracChangeset
for help on using the changeset viewer.