#include <ostream>
#include "eigenpy/eigenpy.hpp"
#include "eigenpy/eigen-from-python.hpp"
#include "eigenpy/std-vector.hpp"
Go to the source code of this file.
Classes | |
struct | CustomTestStruct |
Functions | |
BOOST_PYTHON_MODULE (std_vector) | |
template<typename MatType > | |
std::vector< MatType, Eigen::aligned_allocator< MatType > > | copy (const std::vector< MatType, Eigen::aligned_allocator< MatType > > &Ms) |
template<typename MatType > | |
void | printVectorOfMatrix (const std::vector< MatType, Eigen::aligned_allocator< MatType > > &Ms) |
template<typename MatType > | |
void | setZero (std::vector< MatType, Eigen::aligned_allocator< MatType > > &Ms) |
Definition in file std_vector.cpp.
BOOST_PYTHON_MODULE | ( | std_vector | ) |
Definition at line 37 of file std_vector.cpp.
std::vector<MatType, Eigen::aligned_allocator<MatType> > copy | ( | const std::vector< MatType, Eigen::aligned_allocator< MatType > > & | Ms | ) |
Definition at line 20 of file std_vector.cpp.
void printVectorOfMatrix | ( | const std::vector< MatType, Eigen::aligned_allocator< MatType > > & | Ms | ) |
Definition at line 11 of file std_vector.cpp.
void setZero | ( | std::vector< MatType, Eigen::aligned_allocator< MatType > > & | Ms | ) |
Definition at line 27 of file std_vector.cpp.