|
| template<typename T_ > |
| std::vector< T_ > | sub (const std::vector< T_ > &left, const std::vector< T_ > &right) |
| | Computes the substraction of the given vectors (left - right). More...
|
| |
| template<typename T_ > |
| std::vector< T_ > | add (const std::vector< T_ > &left, const std::vector< T_ > &right) |
| | Computes the addition of the given vectors (left + right). More...
|
| |
| template<typename T_ , typename S_ > |
| std::vector< T_ > | mult (const std::vector< T_ > &left, S_ right) |
| | Computes the element-wise multiplication of the given vector and constant right. More...
|
| |
| template<typename T_ > |
| std::vector< T_ > | mult (const std::vector< T_ > &left, const std::vector< T_ > &right) |
| | Computes the element-wise multiplication of the given vectors. More...
|
| |
| template<typename T_ > |
| T_ | dot (const std::vector< T_ > &left, const std::vector< T_ > &right) |
| | Computes the dot product of the given vectors. More...
|
| |
| template<typename T_ > |
| std::vector< T_ > | mat_mult (const std::vector< std::vector< T_ >> &mat, const std::vector< T_ > &vec) |
| |
| template<typename T_ > |
| float | length (const std::vector< T_ > &left) |
| |
| template<typename T_ > |
| std::vector< T_ > | normalize (const std::vector< T_ > &left) |
| |