| 
| 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::utils::CStream &  | mrpt::math::operator<< (mrpt::utils::CStream &ostrm, const CArrayNumeric< T, N > &a) | 
|   | Binary dump of a CArrayNumeric<T,N> to a stream.  More...
  | 
|   | 
| template<typename T , size_t N>  | 
| mrpt::utils::CStream &  | mrpt::math::operator>> (mrpt::utils::CStream &istrm, CArrayNumeric< T, N > &a) | 
|   | Binary read of a CArrayNumeric<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) | 
|   |