It store one non-zero element in the sparse matrix. More...
It store one non-zero element in the sparse matrix.
Given a row, and a column, store a value
Definition at line 24 of file SparseMatrix_Eigen.hpp.
#include <SparseMatrix_Eigen.hpp>
Public Member Functions | |
| long int & | row () | 
| long int & | col () | 
| T & | value () | 
| triplet (long int i, long int j, T val) | |
| Constructor from row, colum and value.  More... | |
Private Attributes | |
| Eigen::Triplet< T, long int > | triplet_ei | 
Constructor from row, colum and value.
| i | row | 
| j | colum | 
| val | value | 
Definition at line 58 of file SparseMatrix_Eigen.hpp.