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 matplotlibcpp with a xeus-cling notebook. My code is available here, though it is a simple adaptation of the gist linked to in the first cell:...
I cant seem to compile matplotcpp.h due to various syntax issues and like C2059, C2143, etc as well as the error in the title. The weird thing is VS is...
I run into a minor problem using `named_plot` (https://github.com/lava/matplotlib-cpp/blob/master/matplotlibcpp.h#L1370): Is it intentional that the function has only one template parameter `Numeric` that is used for both vectors (X and Y)?...
Python2.7 is obsolete, hence the instructions for installation on Ubuntu need to update. As the command no longer works.
I'm getting this error when I try to compile `matplotlibcpp.h:177:29: error: cannot convert ‘wchar_t**’ to ‘char**’`
Matplotlib docu says that C++11 is required. However, the current use of static_assert assumes C++17: https://en.cppreference.com/w/cpp/language/static_assert
I tried it with Python2.7 and Python3 in Visual Studio 2019. In both cases the plot window freezes if I use `plt::show(false);`. Just `plt::show();` works for me. E.g. the following...
Just like xlabel, ylabel, xlim and ylim to label the x and y axes and set their limits, is there any option for zlabel and zlimit? I tried using zlabel...
When setting the 'extent' keyword in the imshow function I receive the following error: _due to unexpected exception with message: Call to imshow() failed_ How I call the imshow function:...
Hi everyone, I managed to install the library for a c++ code I am writing on Visual Studio. I can compile the code without problems, but as soon as I...