Fork me on GitHub
 All Classes Files Functions Variables Groups Pages
Classes | Functions
coo_matrix.h File Reference

Coordinate matrix format. More...

Go to the source code of this file.

Classes

class  cusp::coo_matrix< IndexType, ValueType, MemorySpace >
 Coordinate (COO) representation a sparse matrix. More...
 
class  cusp::coo_matrix_view< ArrayType1, ArrayType2, ArrayType3, IndexType, ValueType, MemorySpace >
 View of a coo_matrix. More...
 

Functions

template<typename ArrayType1 , typename ArrayType2 , typename ArrayType3 >
coo_matrix_view< ArrayType1,
ArrayType2, ArrayType3 > 
cusp::make_coo_matrix_view (const size_t num_rows, const size_t num_cols, const size_t num_entries, ArrayType1 row_indices, ArrayType2 column_indices, ArrayType3 values)
 
template<typename ArrayType1 , typename ArrayType2 , typename ArrayType3 , typename IndexType , typename ValueType , typename MemorySpace >
coo_matrix_view< ArrayType1,
ArrayType2, ArrayType3,
IndexType, ValueType,
MemorySpace > 
cusp::make_coo_matrix_view (const coo_matrix_view< ArrayType1, ArrayType2, ArrayType3, IndexType, ValueType, MemorySpace > &m)
 
template<typename MatrixType >
MatrixType::coo_view_type cusp::make_coo_matrix_view (MatrixType &m)
 
template<typename MatrixType >
MatrixType::const_coo_view_type cusp::make_coo_matrix_view (const MatrixType &m)
 

Detailed Description

Coordinate matrix format.

Definition in file coo_matrix.h.