kmeans
A C++ library for k-means
Loading...
Searching...
No Matches
kmeans::IndexedAccessExtractor< Index_, Data_ > Class Template Referenceabstract

Extractor for accessing indexed observations. More...

#include <Matrix.hpp>

Public Member Functions

virtual const Data_ * get_observation ()=0
 

Detailed Description

template<typename Index_, typename Data_>
class kmeans::IndexedAccessExtractor< Index_, Data_ >

Extractor for accessing indexed observations.

This is typically generated by Matrix::new_indexed_extractor(). It can be assumed that the lifetime of each extractor will not exceed that of its parent Matrix.

Template Parameters
Index_Integer type for the observation indices.
Data_Numeric type for the data.

Member Function Documentation

◆ get_observation()

template<typename Index_ , typename Data_ >
virtual const Data_ * kmeans::IndexedAccessExtractor< Index_, Data_ >::get_observation ( )
pure virtual
Returns
Pointer to an array of length equal to Matrix::num_dimensions(), containing the coordinates for the next observation.

The first call to this method should return the coordinates of the sequence[0] observation from Matrix::new_consecutive_extractor(). The next call should return sequence[1], etc. until a maximum of length calls have been performed.

This method will only be called within a single thread and may modify internal data members of a ConsecutiveAccessExtractor subclass.


The documentation for this class was generated from the following file: