Replies: 1 comment
-
matplotplusplus/source/matplot/util/common.h Line 334 in b45015e |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Dear all,
From the source code I see the internal layout of the data structure that is returned by
is an
std::pair
ofstd::vector<std::vector<double>>
s (akavector_2d
).I am generating my data externally (with LibTorch) and would like to avoid copying it into the
vector_2d
structure. Is there a way to wrap external data into a structure that is accepted by functions likesurf
, etc.? I see that an overload of thesurf
function acceptsIterableIterables
but I cannot get it to work.Thanks and best regards,
Matthias
Beta Was this translation helpful? Give feedback.
All reactions