行列指数を実行しようとしていますが、べき乗関数をコピーして貼り付けたくなく、クラステンプレートを使用したいと思います。問題は、ブースト行列の場合、行列を乗算するには、prod
(の代わりにoperator*
)関数を使用することです。
g++は私が使用したいテンプレートを理解できないようです。以下のコードで発生するエラーは次のとおりです。
41:37: error: no matching function for call to 'my_pow(boost::numeric::ublas::matrix<int>&, int, <unresolved overloaded function type>)'
コードは次のとおりです。
#include <iostream>
using namespace std;
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/io.hpp>
typedef long long int64;
template <class T, class M> T my_pow(T b, int64 e, M mult)
{
if (e == 1) return b;
if (e % 2 == 1) return mult(b, my_pow(b, e - 1, mult));
T tmp = my_pow(b, e / 2, mult);
return mult(tmp, tmp);
}
template <class T> T my_pow(T b, int64 e) { return my_pow(b, e, multiplies<T>()); }
int main()
{
using namespace boost::numeric::ublas;
matrix<int> m(3, 3);
for (unsigned i = 0; i < m.size1(); ++i)
for (unsigned j = 0; j < m.size2(); ++j)
m(i, j) = 3 * i + j;
std::cout << m << std::endl;
std::cout << my_pow(m, 2, prod) << std::endl;
}
テンプレートを解決するためにprod()をmy_powに渡す方法はありますか?ありがとう。
明確でない場合:bは基数、eは指数、my_powはb^eを計算する