matplotlib-cpp
matplotlib-cpp copied to clipboard
Extremely simple yet powerful header-only C++ plotting library built on the popular matplotlib
I built my project on Windows 10 with visual studio2019. Using dependency walker, it seems that my application needs python37.dll to run. Everything works fine on my computer. But I...
Add `imshow` support for `double` data type. ```c++ namespace plt = matplotlibcpp; . . std::vector A(264*264); . . plt::imshow(A.data(),264,264,1); ```
I was wondering if the picker option is available with this library? If so, can an example be added regarding that. If not, can that functionality be added? Thank you....
Is there a way to plot 3D scatter points and a surface in the same plot? For now I always get two seperate plots...
Hello, Matplotlib-cpp works great when I compile directly with g++ at the command line, but running "make" with a makefile I get the following errors when trying to import. Makefile...
I got this runtime error code 0xC000007B. Source Code: ```c++ #define _USE_MATH_DEFINES #include #include namespace plt = matplotlibcpp; int main() { plt::plot({1,3,2,4}); plt::show(); return 0; } ``` * I already...
- fix compiler warnings - add option that disables building examples
Currently, calls to matplotlibcpp::subplot() always fail as Python complains about the type mismatch.
### Summary Adds `set_zlim()` method which allows setting the minimum and maximum limit in the z-axis. ### Example of use: ```cpp ... plt::plot_surface(x, y, z); plt::set_zlim(-5., 40.); ... ```
On osx 10.10.5, the examples build cleanly but when I try to run them I get: .libc++abi.dylib: terminating with uncaught exception of type std::runtime_error: Error loading module matplotlib.pyplot! /bAbort trap:...