#include <assert.h>
#include <string>
#include <string.h>
#include <fstream>
#include <memory.h>
#include <math.h>
#include <map>
#include "./Interpolation/linear.h"
#include "./Interpolation/spline.h"
#include "./Interpolation/polilinear.h"
#include "./Interpolation/polint.h"
#include "./Interpolation/ratint.h"
#include "../Exceptions/error.h"
Go to the source code of this file.
Classes | |
class | Matrix1D< T > |
Matrix 1D class. More... | |
class | Matrix2D< T > |
Matrix 2D class. More... | |
class | Matrix3D< T > |
Matrix 3D class. More... | |
class | CalculationMatrix |
Model matrix (or related matrices) It is based on Diagonal matrix and have methods for conversion from 3D or 2D PSD (and related) arrays into 1d array of unknown elements. More... | |
Typedefs | |
typedef map< int, Matrix1D < double > > | DiagMatrix |
Diagonal matrix. |
File has 1D-class, 2D-class and 3D-class of matrixes and variouse functions to work with them.
Definition in file Matrix.h.
typedef map<int , Matrix1D<double> > DiagMatrix |