mirror of
				https://github.com/aportelli/LatAnalyze.git
				synced 2025-10-29 14:19:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			27 lines
		
	
	
		
			650 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			650 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(const unsigned int nRow, const unsigned int nCol)
 | |
| : DMatBase(nRow,nCol)
 | |
| {}
 | |
| 
 | |
| unsigned int DMat::getType(void)
 | |
| {
 | |
|     return IoType::dMat;
 | |
| }
 |