The program is as following:
#include <iostream>
#include <boost/numeric/mtl/mtl.hpp>
using namespace mtl;
int main(int argc, char* argv[])
{
dense_vector<double> a(5,1.0);
dense_vector<double> b(5,2.0);
a * trans(b);
}
I want to calculate a * trans(b), but there is a compling error :C2893. Will someone help me? Thanks a lot!