Ignore:
Timestamp:
Aug 29, 2008, 5:41:09 PM (15 years ago)
Author:
Peter
Message:

some docs

Location:
trunk/yat/normalization
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/normalization/QuantileNormalizer.cc

    r1447 r1453  
    3131#include "yat/utility/VectorConstView.h"
    3232
     33#include <cassert>
     34
    3335namespace theplu {
    3436namespace yat {
     
    3840                                      utility::Matrix& result) const
    3941  {
     42    assert(data.rows()==result.rows());
    4043    utility::Matrix data_copy(data);
    4144   
  • trunk/yat/normalization/QuantileNormalizer.h

    r1447 r1453  
    4444       the same distribution of data, and the rank of an element
    4545       within a column is preserved in the normalization.
     46
     47       \note Number of rows in \a matrix and \a result must match.
    4648     */
    4749    void operator()(const utility::Matrix& matrix,
Note: See TracChangeset for help on using the changeset viewer.