Ignore:
Timestamp:
11/07/02 14:45:44 (23 years ago)
Author:
tbretz
Message:
*** empty log message ***
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/manalysis/MMultiDimDistCalc.cc

    r1567 r1588  
    3434//  constructor.
    3535//
    36 //  * If you want to use the kernel function to calculate the distance use:
    37 //      MMultiDimDistCalc::SetUseKernelMethod();
     36//  * If you want to use the nearest neighbor function for calculation use:
     37//      MMultiDimDistCalc::SetUseKernelMethod(kFALSE);
     38//  * If you want to use the kernel function for calculation use:
     39//      MMultiDimDistCalc::SetUseKernelMethod(kTRUE); <default>
    3840//  * To use only the n next neighbors for your calculation use:
    3941//      MMultiDimDistCalc::SetUseNumRows(n);
     
    6668//
    6769MMultiDimDistCalc::MMultiDimDistCalc(const char *name, const char *title)
    68     : fNum(0), fUseKernel(kFALSE), fData(NULL)
     70    : fNum(0), fUseKernel(kTRUE), fData(NULL)
    6971{
    7072    //
Note: See TracChangeset for help on using the changeset viewer.