pfeatherstone
pfeatherstone
Thanks. This work is fantastic! But I don't understand why someone hasn't got the confidence to propose a full numpy style library with linear algebra support and expression templates. Xtensor...
Thank you for your explanations. You're right that there is nothing wrong with using a library. It's just there are so many libraries out there that do matrix algebra. It's...
Mainly, right now i need to support ```std::complex```. I can look at the adaptor for std::pair to write my own. But a macro would make things a lot easier.
``` #ifndef MSGPACK_COMPLEX_H #define MSGPACK_COMPLEX_H #include #include "msgpack/versioning.hpp" #include "msgpack/adaptor/adaptor_base.hpp" #include "msgpack/meta.hpp" namespace msgpack { /// @cond MSGPACK_API_VERSION_NAMESPACE(v1) { /// @endcond namespace adaptor { #if !defined(MSGPACK_USE_CPP03) template struct as {...
Is this ok?
I've added a pull request for complex type. I think the CI config is broken because the build is failing when trying to apt install stuff from an azure ppa....
i have the following adaptors: ``` #include #include #include #include #include namespace msgpack { /// @cond MSGPACK_API_VERSION_NAMESPACE(MSGPACK_DEFAULT_API_NS) { /// @endcond namespace adaptor { static const std::string OPENCV_MAT_KEYS[] = { "rows",...
Ok, need to use BIN instead of array for the pixels. Now i get 1327137 serialised bytes for 1327104 pixels. that's better. Here is the code: ``` #include #include #include...
Oh interesting observation. That seems like an easy fix though
By the way, there is no need to standardise asio in my opinion just create a cmake imported target, use the code and you're good to go. But the standardisation...