matplotplusplus

C++ graphics library for creating data visualizations and plots

brewmacoslinux
Try with needOr install directly
Source

About

C++ Graphics Library for Data Visualization

Commands

matplotplusplus

Examples

Create a simple line plot with matplotplusplus$ g++ -std=c++17 plot_example.cpp -o plot $(pkg-config --cflags --libs matplotplusplus)
Link matplotplusplus in CMake project$ find_package(matplotplusplus REQUIRED) and target_link_libraries(myapp matplotplusplus::matplotplusplus)
Include matplotplusplus header in C++ source$ g++ -I$(brew --prefix matplotplusplus)/include -std=c++17 main.cpp -o app