matplotlib-cpp icon indicating copy to clipboard operation
matplotlib-cpp copied to clipboard

Extremely simple yet powerful header-only C++ plotting library built on the popular matplotlib

Results 7 matplotlib-cpp issues
Sort by recently updated
recently updated
newest added

When compiling a standard example from [readthedocs](https://matplotlib-cpp.readthedocs.io/en/latest/docs.html), #include #include "matplotlibcpp.h" namespace plt = matplotlibcpp; int main() { std::vector x = {1, 2, 3, 4}; std::vector y = {1, 4, 9,...

corrected from python style to c++-style

If I declare an Eigen::Matrix _2D_data; /* The initialization does not matter. The first row holds the x-coordinates, and the second row holds the y- coordinates. */ and I want...

my environment: visual studio2022 use qt to draw image by matplotlibcpp, and i can draw all images in your https://github.com/Cryoris/matplotlib-cpp/readme.md except this one: ``` #include "../matplotlibcpp.h" namespace plt = matplotlibcpp;...

Hello, First, thanks for the great code. It is very helpful to have something nice to visualize the c++ results. I have go through the code and it seems I...

If you use the latest version of Python 3.11, the library calls functions considered obsolete since that version. It is possible to force the compiler to ignore the warning, but...