1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-10 00:45:36 +00:00
LatAnalyze/latan/Mat.cpp

27 lines
639 B
C++

#include <latan/Mat.hpp>
#include <latan/includes.hpp>
using namespace std;
using namespace Latan;
/******************************************************************************
* DMat class *
******************************************************************************/
// constructors ////////////////////////////////////////////////////////////////
DMat::DMat(void)
: DMatBase()
{}
DMat::DMat(const DMat& M)
: DMatBase(M)
{}
DMat::DMat(unsigned int nrow, unsigned int ncol)
: DMatBase(nrow,ncol)
{}
IOTypes::Type DMat::IOType(void)
{
return IOTypes::DMat;
}