Possible Duplicate:
Open source C++ library for vector mathematics
I’ve to do a very simple question: how can I do basic operations like sum, difference or product on two diffent int vector, like in matlab, using c++? does exist any function that can do it?
Thanks in advance.
Depending on your requirements (which you didn’t really elaborate on), you might be looking for anything from
std::for_eachto Boost::uBLAS…