matplotlib-cpp ============== This is matplotlib-cpp, probably the simplest C++ plotting library. It is built to resemble the plotting API used by Matlab and matplotlib. Usage ----- Complete minimal example: #include "matplotlibcpp.h" namespace plt = matplotlibcpp; int main() { std::vector v {1,2,3,4}; plt::plot(v); plt::show(); } // g++ minimal.cpp -std=c++11 -lpython2.7 Result: ![Minimal example](./examples/minimal.png) A more comprehensive example: #include "matplotlibcpp.h" #include namespace plt = matplotlibcpp; int main() { // Prepare data. int n = 5000; std::vector x(n), y(n), z(n), w(n,2); for(int i=0; i