|
template<class T > |
std::ostream & | mrpt::math::operator<< (std::ostream &out, const std::vector< T > &d) |
| A template function for printing out the contents of a std::vector variable. More...
|
|
template<class T > |
std::ostream & | mrpt::math::operator<< (std::ostream &out, std::vector< T > *d) |
| A template function for printing out the contents of a std::vector variable. More...
|
|
template<typename T , size_t N> |
mrpt::serialization::CArchive & | mrpt::math::operator<< (mrpt::serialization::CArchive &ostrm, const CVectorFixed< T, N > &a) |
| Binary dump of a CVectorFixed<T,N> to a stream. More...
|
|
template<typename T , size_t N> |
mrpt::serialization::CArchive & | mrpt::math::operator>> (mrpt::serialization::CArchive &istrm, CVectorFixed< T, N > &a) |
| Binary read of a CVectorFixed<T,N> from a stream. More...
|
|
|
template<typename T1 , typename T2 > |
std::vector< T1 > & | mrpt::math::operator*= (std::vector< T1 > &a, const std::vector< T2 > &b) |
| a*=b (element-wise multiplication) More...
|
|
template<typename T1 > |
std::vector< T1 > & | mrpt::math::operator*= (std::vector< T1 > &a, const T1 b) |
| a*=k (multiplication by a constant) More...
|
|
template<typename T1 , typename T2 > |
std::vector< T1 > | mrpt::math::operator* (const std::vector< T1 > &a, const std::vector< T2 > &b) |
| a*b (element-wise multiplication) More...
|
|
template<typename T1 , typename T2 > |
std::vector< T1 > & | mrpt::math::operator+= (std::vector< T1 > &a, const std::vector< T2 > &b) |
| a+=b (element-wise sum) More...
|
|
template<typename T1 > |
std::vector< T1 > & | mrpt::math::operator+= (std::vector< T1 > &a, const T1 b) |
| a+=b (sum a constant) More...
|
|
template<typename T1 , typename T2 > |
std::vector< T1 > | mrpt::math::operator+ (const std::vector< T1 > &a, const std::vector< T2 > &b) |
| a+b (element-wise sum) More...
|
|
template<typename T1 , typename T2 > |
std::vector< T1 > | mrpt::math::operator- (const std::vector< T1 > &v1, const std::vector< T2 > &v2) |
|