Changeset 767 for trunk/yat/utility
- Timestamp:
- Feb 22, 2007, 4:14:40 PM (16 years ago)
- Location:
- trunk/yat/utility
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/yat/utility/FileUtil.h
r711 r767 38 38 39 39 /// 40 /// FileUtil is a utility class for checking file/directory 41 /// existence and access permissions. FileUtil is a wrapper to 42 /// access(2) and stat(2). 40 /// 41 /// @brief Checking file/directory existence and access permissions. 42 /// 43 /// FileUtil is a wrapper to access(2) and stat(2). 43 44 /// 44 45 class FileUtil { -
trunk/yat/utility/NNI.h
r718 r767 38 38 39 39 /// 40 /// NNI is an abstract base class defining the interfacefor nearest40 /// @brief Interface class for nearest 41 41 /// neighbour imputation (NNI) algorithms. 42 42 /// -
trunk/yat/utility/PCA.h
r715 r767 33 33 34 34 /** 35 @brief Principal Component Analysis 36 35 37 Class performing PCA using SVD. This class assumes that 36 38 the columns corresponds to the dimenension of the problem. -
trunk/yat/utility/SVD.h
r751 r767 35 35 36 36 /** 37 Class encapsulating GSL methods for singular value decomposition, 38 SVD. 37 @brief Singular Value Decomposition 38 39 Class encapsulating GSL methods for singular value 40 decomposition, SVD. 39 41 40 42 A = U S V' = (MxN)(NxN)(NxN) = (MxN)\n -
trunk/yat/utility/WeNNI.h
r703 r767 36 36 namespace utility { 37 37 38 /// 39 /// @brief Weighted Nearest Neighbour Imputation 38 40 /// 39 41 /// WeNNI is a continuous weights generalization of the (binary -
trunk/yat/utility/kNNI.h
r687 r767 37 37 38 38 /// 39 /// @brief kNNimpute 40 /// 39 41 /// kNNI is the binary weight implementation of NNI. This follows 40 42 /// the work done by Troyanskaya et al. cited in the NNI document -
trunk/yat/utility/matrix.h
r762 r767 43 43 44 44 /// 45 /// This is the yat interface to GSL matrix. 'double' is the46 /// only type supported, maybe we should add a 'complex' type as47 /// well in the future.45 /// @brief Interface to GSL matrix. 46 /// 47 /// For the time being 'double' is the only type supported. 48 48 /// 49 49 /// \par[File streams] Reading and writing vectors to file streams -
trunk/yat/utility/stl_utility.h
r725 r767 58 58 59 59 /// 60 /// @brief Functor comparing pairs using second. 61 /// 60 62 /// STL provides operator< for the pair.first element, but none for 61 63 /// pair.second. This template provides this and can be used as the -
trunk/yat/utility/vector.h
r759 r767 44 44 45 45 /** 46 This is the yat interface to GSL vector. 'double' is the only47 type supported, maybe we should add a 'complex' type as well in 48 the future.46 @brief This is the yat interface to GSL vector. 47 48 For time being 'double' is the only type supported. 49 49 50 50 \par File streams:
Note: See TracChangeset
for help on using the changeset viewer.