Changeset 1191 for trunk/yat/classifier


Ignore:
Timestamp:
Feb 29, 2008, 7:57:44 PM (15 years ago)
Author:
Peter
Message:

improved docs for MatrixLookup?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/yat/classifier/MatrixLookup.h

    r1170 r1191  
    5151  /// in a more general way than the views supported in the matrix
    5252  /// class. The object does not contain any data, but only a pointer
    53   /// to a matrix and row and columns incices defining which
     53  /// to a utility::Matrix and row and columns incices defining which
    5454  /// sub-matrix to look into.  Each row and each column corresponds
    55   /// to a row and a column in the Kernel, respectively. This design
     55  /// to a row and a column in the utility::Matrix, respectively. This design
    5656  /// allow for fast creation of sub-matrices, which is a common
    5757  /// operation in most traning/validation procedures. The views are
    5858  /// const views in the sense that they cannot modify underlying
    59   /// matrix.
    60   ///
    61   /// A MatrixLookup can be created directly from a matrix or from an
    62   /// other MatrixLookup. In the latter case, the resulting
    63   /// MatrixLookup is looking directly into the underlying matrix to
     59  /// utility::Matrix.
     60  ///
     61  /// A MatrixLookup can be created directly from a utility::Matrix or from
     62  /// another MatrixLookup. In the latter case, the resulting
     63  /// MatrixLookup is looking directly into the underlying utility::Matrix to
    6464  /// avoid multiple lookups.
    6565  ///
    6666  /// There is a possibility to set the MatrixLookup as owner of the
    67   /// underlying matrix. This implies that underlying data is deleted
     67  /// underlying utility::Matrix. This implies that underlying data is deleted
    6868  /// in destructor of MatrixLookup, but only if there is no other
    6969  /// owner of the underlying data. A reference counter is used to
Note: See TracChangeset for help on using the changeset viewer.