v2.0.0
Loading...
Searching...
No Matches
mne_sparse_named_matrix.h
Go to the documentation of this file.
1//=============================================================================================================
17
18#ifndef MNE_SPARSE_NAMED_MATRIX_H
19#define MNE_SPARSE_NAMED_MATRIX_H
20
21//=============================================================================================================
22// INCLUDES
23//=============================================================================================================
24
25#include "mne_global.h"
26
28
29#include <QStringList>
30
31#include <memory>
32
33//=============================================================================================================
34// DEFINE NAMESPACE MNELIB
35//=============================================================================================================
36
37namespace MNELIB
38{
39
44{
45public:
48
49 int nrow = 0;
50 int ncol = 0;
51 QStringList rowlist;
52 QStringList collist;
53 std::unique_ptr<FIFFLIB::FiffSparseMatrix> data;
54};
55
56} // namespace MNELIB
57
58#endif // MNE_SPARSE_NAMED_MATRIX_H
MNELIB shared-library export/import macros and library build metadata.
#define MNESHARED_EXPORT
Definition mne_global.h:40
FIFF sparse matrix: column / row-compressed sparse storage backed by Eigen::SparseMatrix.
Core MNE data structures (source spaces, source estimates, hemispheres).
std::unique_ptr< FIFFLIB::FiffSparseMatrix > data