#include <iostream>
#include <sstream>
#include "eigenpy/eigenpy.hpp"
#include "eigenpy/ufunc.hpp"
#include "eigenpy/user-type.hpp"
Go to the source code of this file.
|
| BOOST_PYTHON_MODULE (user_type) |
|
template<typename Scalar > |
Eigen::Matrix< Scalar, Eigen::Dynamic, Eigen::Dynamic > | build_matrix (int rows, int cols) |
|
template<typename Scalar > |
Eigen::Matrix< CustomType< Scalar >, Eigen::Dynamic, Eigen::Dynamic > | create (int rows, int cols) |
|
template<typename Scalar > |
void | expose_custom_type (const std::string &name) |
|
template<typename Scalar > |
void | print (const Eigen::Matrix< CustomType< Scalar >, Eigen::Dynamic, Eigen::Dynamic > &mat) |
|
◆ BOOST_PYTHON_MODULE()
BOOST_PYTHON_MODULE |
( |
user_type |
| ) |
|
◆ build_matrix()
template<typename Scalar >
Eigen::Matrix<Scalar, Eigen::Dynamic, Eigen::Dynamic> build_matrix |
( |
int |
rows, |
|
|
int |
cols |
|
) |
| |
◆ create()
template<typename Scalar >
Eigen::Matrix<CustomType<Scalar>, Eigen::Dynamic, Eigen::Dynamic> create |
( |
int |
rows, |
|
|
int |
cols |
|
) |
| |
◆ expose_custom_type()
template<typename Scalar >
void expose_custom_type |
( |
const std::string & |
name | ) |
|
◆ print()
template<typename Scalar >
void print |
( |
const Eigen::Matrix< CustomType< Scalar >, Eigen::Dynamic, Eigen::Dynamic > & |
mat | ) |
|