Is it possible to calculate the elementwise product of an uBLAS vector of doubles with a complex double? The following code fails to compile since it can not find an overloaded operator *. I would expect it to work since multiplying a double with a complex double is well defined.
#include <complex>
#include <boost/numeric/ublas/vector.hpp>
#include <boost/numeric/ublas/io.hpp>
int main(int argc, char **argv)
{
using namespace boost::numeric::ublas;
vector<double> v(3);
for (unsigned i = 0; i < v.size(); ++i)
{
v (i) = i;
}
vector<std::complex<double> > w = v * std::complex<double>(3.0, -1.0);
return 0;
}
Compiling this using GCC 4.6 and Boost 1.55.0 yields the following:
error: no match for ‘operator*’ (operand types are ‘boost::numeric::ublas::vector<double>’ and ‘std::complex<double>’)
By looking at the overloaded * operator in vector_expression.hpp:
It looks like the problem is the output of "is_convertible", it doesn't go both ways, so as there is no conversion from std::complex to double in this case, it doesn't work. I added a new definition only swapping the order of the arguments in this template and it works...
Sorry for bad english