matplotlib-cpp
欢迎使用matplotlib-cpp,它可能是最简单的C ++绘图库。 它的构建类似于Matlab和matplotlib使用的绘图API。
用法
完整的最小示例:
# include " matplotlibcpp.h "
namespace plt = matplotlibcpp;
int main () {
plt::plot ({ 1 , 3 , 2 , 4 });
plt::show ();
}
g++ minimal.cpp -std=c++11 -I/usr/include/python2.7 -lpython2.7
结果:
一个更全面的示例:
# include " matplotlibcpp.h "
# include
namespace plt = matplotlibcpp;
int main
2021-10-17 10:18:51
508KB
C++
1