Changeset 228 for trunk/src/kNNI.h
- Timestamp:
- Feb 1, 2005, 3:06:51 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kNNI.h
r178 r228 25 25 { 26 26 public: 27 /// 28 /// Constructor 29 /// 30 kNNI(const gslapi::matrix& matrix,const gslapi::matrix& weight, 31 const u_int neighbours); 32 33 /// 27 34 /// Perform kNNI on data in \a matrix with binary uncertainty 28 35 /// weights in \a weight using \a neighbours for the new impute 29 36 /// value. 30 37 /// 31 /// @note The algorithm is initiated within the constructor and 32 /// the result is fetched with the NNI::imputed_data method. 33 kNNI(const gslapi::matrix& matrix,const gslapi::matrix& weight, 34 const u_int neighbours); 38 size_t estimate(void); 35 39 36 40 private: 37 void estimate(void);38 39 41 vector<u_int> mv_rows_; // index to rows that have values to estimate 40 42 };
Note: See TracChangeset
for help on using the changeset viewer.