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

Extractor for accessing random observations. More...

#include <Matrix.hpp>

Public Member Functions

virtual const Data_ * get_observation (Index_ i)=0
 

Detailed Description

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

Extractor for accessing random observations.

This is typically generated by Matrix::new_random_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::RandomAccessExtractor< Index_, Data_ >::get_observation ( Index_ i)
pure virtual
Parameters
iIndex of the observation.
Returns
Pointer to an array of length equal to Matrix::num_dimensions(), containing the coordinates for observation i.

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


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