Changeset 1588 for trunk/MagicSoft/Mars/manalysis
- Timestamp:
- 11/07/02 14:45:44 (23 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Mars/manalysis/MMultiDimDistCalc.cc
r1567 r1588 34 34 // constructor. 35 35 // 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> 38 40 // * To use only the n next neighbors for your calculation use: 39 41 // MMultiDimDistCalc::SetUseNumRows(n); … … 66 68 // 67 69 MMultiDimDistCalc::MMultiDimDistCalc(const char *name, const char *title) 68 : fNum(0), fUseKernel(k FALSE), fData(NULL)70 : fNum(0), fUseKernel(kTRUE), fData(NULL) 69 71 { 70 72 //
Note:
See TracChangeset
for help on using the changeset viewer.