文件名称:matlab最简单的代码-matplotlib-cpp:matplotlib-cpp
文件大小:179KB
文件格式:ZIP
更新时间:2024-06-11 07:24:05
系统开源
matlab最简单的代码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 < cmath > namespace plt = matplotlibcpp; int main () { // Prepare data. int n = 5000 ; std::vector< double > x (n), y (n), z (n), w (n, 2 ); for ( int
【文件预览】:
matplotlib-cpp-master
----.gitignore(294B)
----Makefile(947B)
----LICENSE(1KB)
----contrib()
--------WinBuild.cmd(1KB)
--------README.md(569B)
--------CMakeLists.txt(753B)
----LICENSE.matplotlib(3KB)
----examples()
--------basic.png(23KB)
--------basic.cpp(879B)
--------xkcd.png(78KB)
--------modern.png(30KB)
--------animation.cpp(752B)
--------animation.gif(33KB)
--------minimal.png(20KB)
--------xkcd.cpp(401B)
--------modern.cpp(812B)
--------minimal.cpp(121B)
--------nonblock.cpp(1KB)
----README.md(6KB)
----matplotlibcpp.h(37KB)