nmpp
tmatrix_spec.h
1
2// //
3// Header file of template of class mtr //
4// //
6#ifndef _TMATRIX_SPEC_H_INCLUDED_
7#define _TMATRIX_SPEC_H_INCLUDED_
8
9//#include "tnmtl.h"
10
11//THIS FUNCTIONS WAS INSERTED FROM OLD VERSION OF THIS FILE!!!!!!!!!!!!!!!!!!!!!!!!!!
12template<>
14{
15 int m_size=m_height*m_width;
16 //double n=pow(2,Shl);
17 double n=1<<Shl;
18 for(int i=0;i<m_size;i++)
19 m_data[i]*=n;
20 return (*this);
21}
22//THIS FUNCTIONS WAS INSERTED FROM OLD VERSION OF THIS FILE!!!!!!!!!!!!!!!!!!!!!!!!!!
23
24
25#endif
Definition: tmatrix.h:88