suppose the C++ function looks like: ```cpp void func(std::vector<Eigen::MatrixXd> & X); ``` can I used `np_arg` to specify this? I think I'll need to copy into the binding anyway (because my function is not templated over storage order). But any suggestions?
suppose the C++ function looks like:
can I used
np_argto specify this?I think I'll need to copy into the binding anyway (because my function is not templated over storage order). But any suggestions?