我想逐个元素地比较两个矩阵,如果该位置的元素匹配则返回包含1
的矩阵,否则返回0
。我创建了一个简单的测试函数来执行此操作:
template <class A, class B>
void func(const A& a, const B& b)
{
auto c = (b.array() == a.array()).cast<int>();
std::cout << c;
}
所以我写了一个这样的main
函数来测试它:
int main()
{
Eigen::Array<int,Eigen::Dynamic,Eigen::Dynamic> b;
b.resize(2,2);
b.fill(2);
auto a = b;
a(0,0) = 1;
a(0,1) = 2;
a(1,0) = 3;
a(1,1) = 4;
func(a,b);
return 0;
}
但我一直收到这个错误:
eigenOperations.cpp: In function ‘void func(const A&, const B&)’:
eigenOperations.cpp:8:24: error: expected primary-expression before
‘int’ auto c = temp.cast<int>();
eigenOperations.cpp:8:24: error: expected ‘,’ or ‘;’ before ‘int’ make: *** [eigenOperations] Error 1
我在这里做错了什么?
答案 0 :(得分:1)
将此标记为重复的人是对的。问题确实出现,因为我没有完全理解C ++ template
关键字。
Where and why do I have to put the "template" and "typename" keywords?
用以下内容替换该功能解决了问题:
template <class A, class B>
void func(const A& a, const B& b)
{
auto c = (b.array() == a.array()).template cast<int>();
std::cout << c;
}