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

Interface for matrix data. More...

#include <Matrix.hpp>

Inheritance diagram for kmeans::Matrix< Index_, Data_ >:

Public Member Functions

virtual Index_ num_observations () const =0
 
virtual size_t num_dimensions () const =0
 
virtual std::unique_ptr< RandomAccessExtractor< Index_, Data_ > > new_extractor () const =0
 
virtual std::unique_ptr< ConsecutiveAccessExtractor< Index_, Data_ > > new_extractor (Index_ start, Index_ length) const =0
 
virtual std::unique_ptr< IndexedAccessExtractor< Index_, Data_ > > new_extractor (const Index_ *sequence, size_t length) const =0
 

Detailed Description

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

Interface for matrix data.

This defines the expectations for a matrix of observation-level data to be used in Initialize::run() and Refine::run(). Each matrix should support extraction of the vector of coordinates for each observation.

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

Member Function Documentation

◆ new_extractor() [1/3]

template<typename Index_ , typename Data_ >
virtual std::unique_ptr< RandomAccessExtractor< Index_, Data_ > > kmeans::Matrix< Index_, Data_ >::new_extractor ( ) const
pure virtual
Returns
A new random-access extractor.

◆ new_extractor() [2/3]

template<typename Index_ , typename Data_ >
virtual std::unique_ptr< IndexedAccessExtractor< Index_, Data_ > > kmeans::Matrix< Index_, Data_ >::new_extractor ( const Index_ * sequence,
size_t length ) const
pure virtual
Parameters
[in]sequencePointer to an array of sorted and unique indices of observations, to be accessed in the provided order. It is assumed that the vector will not be deallocated before the destruction of the returned IndexedAccessWorkspace.
lengthNumber of observations in sequence.
Returns
A new indexed-access extractor.

◆ new_extractor() [3/3]

template<typename Index_ , typename Data_ >
virtual std::unique_ptr< ConsecutiveAccessExtractor< Index_, Data_ > > kmeans::Matrix< Index_, Data_ >::new_extractor ( Index_ start,
Index_ length ) const
pure virtual
Parameters
startStart of the contiguous block of observations to be accessed consecutively.
lengthLength of the contiguous block of observations to be accessed consecutively.
Returns
A new consecutive-access extractor.

◆ num_dimensions()

template<typename Index_ , typename Data_ >
virtual size_t kmeans::Matrix< Index_, Data_ >::num_dimensions ( ) const
pure virtual
Returns
Number of dimensions.

◆ num_observations()

template<typename Index_ , typename Data_ >
virtual Index_ kmeans::Matrix< Index_, Data_ >::num_observations ( ) const
pure virtual
Returns
Number of observations.

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