knncolle
Collection of KNN methods in C++
Loading...
Searching...
No Matches
knncolle::SimpleMatrixExtractor< Data_ > Class Template Referencefinal

Extractor for a SimpleMatrix. More...

#include <Matrix.hpp>

Inheritance diagram for knncolle::SimpleMatrixExtractor< Data_ >:
Collaboration diagram for knncolle::SimpleMatrixExtractor< Data_ >:

Public Member Functions

const Data_ * next ()
 
- Public Member Functions inherited from knncolle::MatrixExtractor< Data_ >

Detailed Description

template<typename Data_>
class knncolle::SimpleMatrixExtractor< Data_ >

Extractor for a SimpleMatrix.

This should be typically constructed by calling SimpleMatrix::new_extractor().

Template Parameters
Data_Numeric type of the data.

Member Function Documentation

◆ next()

template<typename Data_ >
const Data_ * knncolle::SimpleMatrixExtractor< Data_ >::next ( )
inlinevirtual
Returns
Pointer to an array of length equal to Matrix::num_dimensions(), containing the coordinates for the next observation.

For a newly created MatrixExtractor, the first call to next() should return the coordinates of the first observation in the matrix; the next call should return the coordinates of the second observation; and so on, for up to Matrix::num_observations() calls, after which the MatrixExtractor should no longer be used.

Implements knncolle::MatrixExtractor< Data_ >.


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