C++ matrix implementation
Data Structures | Typedefs
Matrix.hpp File Reference
#include <vector>
#include <functional>
#include <stdexcept>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cmath>
#include <set>
#include <complex>
#include "include/nr3/nr3.h"
#include "include/nr3/eigen_unsym.h"
#include "include/csv_reader/CSVReader.hpp"
Include dependency graph for Matrix.hpp:

Go to the source code of this file.

Data Structures

class  Matrix< T, typename >
 Matrix implementation, with a series of linear algebra functions. More...
 

Typedefs

typedef Matrix< double > MatrixD
 
typedef Matrix< int > MatrixI
 

Typedef Documentation

◆ MatrixD

typedef Matrix<double> MatrixD

Definition at line 1376 of file Matrix.hpp.

◆ MatrixI

typedef Matrix<int> MatrixI

Definition at line 1377 of file Matrix.hpp.