Changeset 322 for trunk/lib/svm/Kernel_SEV.h
- Timestamp:
- May 26, 2005, 10:50:05 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/svm/Kernel_SEV.h
r307 r322 14 14 15 15 /// 16 /// @brief Speed Efficient Kernel 16 17 /// Class taking care of the \f$NxN\f$ kernel matrix, where 17 18 /// \f$N\f$ is number of samples. Type of Kernel is defined by a 18 /// KernelFunction. This Speed Efficient Versions (SEV) calculated 19 /// the kernel matrix once and the kernel is stored in memory. 19 /// KernelFunction. This Speed Efficient Version (SEV) calculated 20 /// the kernel matrix once and the kernel is stored in 21 /// memory. When \f$N\f$ is large and the kernel matrix cannot be 22 /// stored in memory, use Kernel_MEV instead. 20 23 /// 21 24 /// @see also Kernel_MEV … … 32 35 Kernel_SEV(const gslapi::matrix&, const KernelFunction&); 33 36 37 /// 38 /// @todo 39 /// Copy constructor 40 /// 34 41 Kernel_SEV(const Kernel_SEV&); 35 42 … … 40 47 41 48 /// 42 /// @return element at position (\a row, \a column) ofthe Kernel49 /// @return element at position (\a row, \a column) in the Kernel 43 50 /// matrix 44 51 /// 45 inline double operator()( size_t row,size_t column) const52 inline double operator()(const size_t row,const size_t column) const 46 53 { return kernel_(row,column); } 47 54
Note: See TracChangeset
for help on using the changeset viewer.