I wrote a simple template matrix class, the getMat function should return a sub matrix of the original with different size , so I coded like this:
template <typename T, size_t m, size_t n, typename _Prd>
template<size_t _m, size_t _n>
Matrix<T,_m,_n,_Prd> Matrix<T,m,n,_Prd>::getMat(const size_t& ulrow, const size_t& ulcol ) const
{
assert(_m+ulcol <= m && _n+ulrow <= n) ;
T temp[_m*_n] ;
for (size_t j = 0 ; j < _m ; ++j)
for (size_t i = 0 ; i < _n ; ++i)
temp[j*_n+i] = data[(ulrow + j) * n + ulcol+i] ;
return Matrix<T,_m,_n,_Prd>(temp) ;
}
Then I call it like this:
Matrix<double, 4,4> testmat2(100.0) ;
Matrix<double,2,2> testmat4 = testmat2.getMat(0,0) ;
And it shows error like this:
main.cpp:127: error: no matching function for call to ‘Matrix<double, 4ul, 4ul, std::equal_to<double> >::getMat(size_t, size_t)’
So my question is why compiler doesn't detect this getMat function ?
Update:
I tried code in this way and it works:
template <typename T, size_t m, size_t n, typename _Prd>
template<size_t _m, size_t _n>
void Matrix<T,m,n,_Prd>::getMat(Matrix<T,_m,_n,_Prd>& result, const size_t& ulrow, const size_t& ulcol) const
{
assert(_m+ulcol <= m && _n+ulrow <= n) ;
for (size_t j = 0 ; j < _m ; ++j)
for (size_t i = 0 ; i < _n ; ++i)
result[j*_n+i] = data[(ulrow + j) * n + ulcol+i] ;
}
This is to pass the sub matrix to be modified as a reference.
So my problem is that when this function return a different template type (same object), the compiler doesn't detect this function at all.
But I used this technique before on many conversion operators and they work. For example, this one works:
template<typename T, int cn, typename _Prd>
template<typename U, typename _Prd2>
Vec<T,cn,_Prd>::operator Vec<U,cn,_Prd2>() const
{
U temp[cn] ;
for (int i = 0 ; i < cn ; ++i)
temp[i] = static_cast<U>(this->data[i]) ;
Vec<U,cn,_Prd2> v(temp) ;
return v ;
};
Update2:
I modified the code according to iammilind:
template<size_t _m, size_t _n>
Matrix<T,_m,_n,_Prd> getMat<_m,_n>(const size_t& ulrow, const size_t& ulcol) const ;
// the declaration in the class.
template <typename T, size_t m, size_t n, typename _Prd>
template<size_t _m, size_t _n>
Matrix<T,_m,_n,_Prd> Matrix<T,m,n,_Prd>::getMat<_m,_n>(const size_t& ulrow, const size_t& ulcol ) const
{
assert(_m+ulcol <= m && _n+ulrow <= n) ;
T temp[_m*_n] ;
for (size_t j = 0 ; j < _m ; ++j)
for (size_t i = 0 ; i < _n ; ++i)
temp[j*_n+i] = data[(ulrow + j) * n + ulcol+i] ;
return Matrix<T,_m,_n,_Prd>(temp) ;
}
And I call it as:
Matrix<double,2,2> testmat7 = testmat2.getMat<2,2>(0,0) ;
But it doesn't compile:
In file included from main.cpp:13:
Matrix.hpp:125: error: expected initializer before ‘<’ token
In file included from main.cpp:13:
Matrix.hpp:268: error: expected initializer before ‘<’ token
main.cpp: In function ‘int main(int, char**)’:
main.cpp:135: error: ‘class Matrix<double, 4ul, 4ul, std::equal_to<double> >’ has no member named ‘getMat’
main.cpp:135: error: expected unqualified-id before numeric constant
Thanks.
getMat()is also atemplatefunction so you have to call it astestmat2.getMat<_m,_n>(0,0)where_m,_nis your choice. However your code is very confusing. – iammilind Nov 22 '12 at 4:35getMat<>in your code. It still shows the old way. – iammilind Nov 22 '12 at 5:02