pybindings for nalgebra or other matrix math libs #2029
-
I'm able to expose simple functions written in Rust to python using pyo3 but can see no way to expose complex "eigen" / matrix types. Does anyone know if this is possible? I was hoping it would work like the pybind11 stuff in C++ that includes eigen vector / matrix types. lib.rs
|
Beta Was this translation helpful? Give feedback.
Answered by
adamreichold
Nov 26, 2021
Replies: 1 comment 2 replies
-
I think |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
davidhewitt
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I think
rust-numpy
which provides glue between Python's NumPy and Rust'sndarray
might be helpful in this case?