Do you know why I cannot store in a double the result from a vector multiplication ?
double A = rowvec({1,3,4})*vec({5,6,7});
It gives "no suitable conversion function from "const arma::Glue"... to "const double" exists.
Still that matrix vector multiplication gives a double. How can I get around ?
Thank you!