HomeSort by relevance Sort by last modified time
    Searched refs:C_Map_MatrixXd (Results 1 - 3 of 3) sorted by null

  /external/eigen/demos/mix_eigen_and_c/
binary_library.h 23 struct C_Map_MatrixXd {};
35 const struct C_Map_MatrixXd *src);
48 // the C_Map_MatrixXd class, wraps some of the functionality
50 struct C_Map_MatrixXd* Map_MatrixXd_new(double *array, int rows, int cols);
51 void Map_MatrixXd_delete (struct C_Map_MatrixXd *m);
52 void Map_MatrixXd_set_zero (struct C_Map_MatrixXd *m);
53 void Map_MatrixXd_copy (struct C_Map_MatrixXd *dst,
54 const struct C_Map_MatrixXd *src);
55 void Map_MatrixXd_copy_matrix(struct C_Map_MatrixXd *dst,
57 void Map_MatrixXd_set_coeff (struct C_Map_MatrixXd *m
    [all...]
binary_library.cpp 45 inline Map<MatrixXd>& c_to_eigen(C_Map_MatrixXd* ptr)
50 inline const Map<MatrixXd>& c_to_eigen(const C_Map_MatrixXd* ptr)
55 inline C_Map_MatrixXd* eigen_to_c(Map<MatrixXd>& ref)
57 return reinterpret_cast<C_Map_MatrixXd*>(&ref);
60 inline const C_Map_MatrixXd* eigen_to_c(const Map<MatrixXd>& ref)
62 return reinterpret_cast<const C_Map_MatrixXd*>(&ref);
102 void MatrixXd_copy_map(C_MatrixXd *dst, const C_Map_MatrixXd *src)
137 C_Map_MatrixXd* Map_MatrixXd_new(double *array, int rows, int cols)
142 void Map_MatrixXd_delete(C_Map_MatrixXd *m)
147 void Map_MatrixXd_set_zero(C_Map_MatrixXd *m
    [all...]
example.c 37 struct C_Map_MatrixXd *m = Map_MatrixXd_new(array, 1, n);
44 struct C_Map_MatrixXd *map;

Completed in 1603 milliseconds