tatami
C++ API for different matrix representations
Loading...
Searching...
No Matches
tatami::MyopicSparseExtractor< Value_, Index_ > Class Template Referenceabstract

Extract an element of the target dimension in sparse form without an oracle. More...

#include <Extractor.hpp>

Public Member Functions

virtual SparseRange< Value_, Index_ > fetch (Index_ i, Value_ *value_buffer, Index_ *index_buffer)=0
 

Detailed Description

template<typename Value_, typename Index_>
class tatami::MyopicSparseExtractor< Value_, Index_ >

Extract an element of the target dimension in sparse form without an oracle.

Template Parameters
Value_Data value type, should be numeric.
Index_Row/column index type, should be integer.

Member Function Documentation

◆ fetch()

template<typename Value_ , typename Index_ >
virtual SparseRange< Value_, Index_ > tatami::MyopicSparseExtractor< Value_, Index_ >::fetch ( Index_ i,
Value_ * value_buffer,
Index_ * index_buffer )
pure virtual
Parameters
iIndex of the target dimension element, i.e., the row or column index.
[out]value_bufferPointer to an array with enough space for at least N values, where N is defined as described for MyopicDenseExtractor::fetch().
[out]index_bufferPointer to an array with enough space for at least N indices, where N is defined as described for MyopicDenseExtractor::fetch().
Returns
A SparseRange object describing the contents of the i-th dimension element.

If Options::sparse_extract_value = false during construction of this instance, value_buffer is ignored and SparseRange::value is set to NULL in the output.

If Options::sparse_extract_value = true and SparseRange::value is the same as value_buffer, this means that value_buffer has been filled with the values of the structural non-zero elements of the i-th dimension element.

If Options::sparse_extract_value = true and SparseRange::value is not the same as value_buffer, it should refer to another array of length SparseRange::number. This array should be valid for the lifetime of the Matrix object used to construct this MyopicSparseExtractor. Similarly, the contents should not change for the lifetime of the Matrix. In this situation, no guarantees are provided for the contents of value_buffer.

If Options::sparse_extract_index was set to false during construction of this instance, index_buffer is ignored and SparseRange::index is set to NULL in the output.

If Options::sparse_extract_index = true and SparseRange::index is the same as index_buffer, this means that index_buffer has been filled with the indices of the structural non-zero elements of the i-th dimension element.

If Options::sparse_extract_index = true and SparseRange::index is not the same as index_buffer, it should refer to another array of length SparseRange::number. This array should be valid for the lifetime of the Matrix object used to construct this MyopicSparseExtractor. Similarly, the contents should not change for the lifetime of the Matrix. In this situation, no guarantees are provided for the contents of index_buffer.


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