|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator* (boost::multi_array< T, ND > const &lhs, boost::multi_array< T, ND > const &rhs) |
| Multiplication operator between two multi arrays, element-wise.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator* (T const &lhs, boost::multi_array< T, ND > const &rhs) |
| Multiplication operator between a multi array and a scalar.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator* (boost::multi_array< T, ND > const &lhs, T const &rhs) |
| Multiplication operator between a multi array and a scalar.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator+ (boost::multi_array< T, ND > const &lhs, boost::multi_array< T, ND > const &rhs) |
| Addition operator between two multi arrays, element wise.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator+ (T const &lhs, boost::multi_array< T, ND > const &rhs) |
| Addition operator between a multi array and a scalar.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator+ (boost::multi_array< T, ND > const &lhs, T const &rhs) |
| Addition operator between a scalar and a multi array.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator- (boost::multi_array< T, ND > const &lhs, boost::multi_array< T, ND > const &rhs) |
| Minus operator between two multi arrays, element-wise.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator- (T const &lhs, boost::multi_array< T, ND > const &rhs) |
| Minus operator between a scalar and a multi array, element-wise.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator- (boost::multi_array< T, ND > const &lhs, T const &rhs) |
| Minus operator between a multi array and a scalar, element-wise.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator/ (boost::multi_array< T, ND > const &lhs, boost::multi_array< T, ND > const &rhs) |
| Division between two multi arrays, element wise.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator/ (T const &lhs, boost::multi_array< T, ND > const &rhs) |
| Division between a scalar and a multi array, element wise.
|
|
template<class T , long unsigned int ND> |
boost::multi_array< T, ND > | operator/ (boost::multi_array< T, ND > const &lhs, T const &rhs) |
| Division between a multi array and a scalar, element wise.
|
|
matplot::vector_2d | np::convert_to_matplot (const boost::multi_array< double, 2 > &arr) |
| Convert a 2D boost::multi_array to a matplot::vector_2d.
|
|