matplotlib-cpp
matplotlib-cpp copied to clipboard
Extremely simple yet powerful header-only C++ plotting library built on the popular matplotlib
I am trying to use this header only library. And I get it down from github, and I put it into a folder. And in a test VS2017 C++ console...
I am trying to reproduce the original python matplotlib functionality of being able to display fixed offsets in x, y, and z values in the chart axes to whole numbers....
Dear mr. Evers, thank you for creating this awesome library! I have been following the activity on this repository over the past few months and have found that it is...
``` /Users/vagrawal/new/object_pose/include/matplotlibcpp.hpp:306:20: error: redefinition of 'select_npy_type' template struct select_npy_type { const static NPY_TYPES type = NPY_INT64; }; ^~~~~~~~~~~~~~~~~~~~~~~~~~ /Users/vagrawal/new/object_pose/include/matplotlibcpp.hpp:297:20: note: previous definition is here template struct select_npy_type { const static...
The following code segfaults with python 3. It does so on the Py_Finalize call ```python3 #include int main() { namespace plt = matplotlibcpp; plt::plot({1,3,2,4}); plt::show(); plt::close(); return 0; ``` The...
In a program I wrote, I had to plot a few hundreds of matplotlib plots, and memory usage went up to 5 Gb despite calling `plt::clf()` and `plt::close()` after each...
Following the closed issue #114, I still get a segmentation fault on call to figure_size(). I get the error on one machine and not on the other. Both running Ubuntu...
When compiling against python 3 with numpy 3 and if matplotlib uses Qt5Agg as it's backend, we receive a seg. fault. Example: ``` #include "matplotlibcpp.h" namespace plt = matplotlibcpp; int...
I create this Dockerfile, but it doesn't work : ``` FROM ubuntu:20.04 ARG DEBIAN_FRONTEND=noninteractive ENV TZ=Asia/Tokyo RUN apt-get update && \ apt-get install -y zsh time tzdata tree git curl...
Is there a way to use logarithmic scale for Y?