Hi,
The following code would not compile. Can somebody let me know what the problem is?
Thanks,
Peng
#include <boost/numeric/ublas/matrix.hpp>
#include <boost/numeric/ublas/io.hpp>
int main () {
boost::numeric::ublas::matrix<double> m(2, 2);
m(0, 0) = 1;
m(1, 0) = 2;
m(0, 1) = 3;
m(1, 1) = 4;
std::cout << prec_prod(m, prec_prod(m, m)) << std::endl;//error
}