Boost QVM

operator*(v,m)

#include <boost/qvm/vm.hpp>

namespace boost
{
    namespace qvm
    {
        //Only enabled if:
        //  is_v<A>::value && is_m<B>::value &&
        //  v_traits<A>::dim==m_traits<B>::rows
        template <class A,class B>
        typename deduce_v2<A,B,m_traits<B>::cols>::type
        operator*( A const & a, B const & b );
    }
}

Returns:

The result of multiplying the vector a and the matrix b, where a is interpreted as a matrix-row. The resulting matrix-column is returned as a vector type.