伙伴云客服论坛»论坛 S区 S软件开发 查看内容

0 评论

0 收藏

分享

windows下vscode环境c++利用matplotlibcpp绘图

目录

    1. 下载matplotlibcpp2. matplotlibcpp测试代码3. 配置.vscode
      3.1 配置tasks.json3.2 配置c_cpp_properties.json
    4. 注释掉matplotlibcpp.h中两行代码5. 运行


1. 下载matplotlibcpp

https://github.com/lava/matplotlib-cpp

2. matplotlibcpp测试代码

#include "matplotlibcpp.h"
namespace plt = matplotlibcpp;
int main() {
    plt::plot({1,3,2,4});
    plt::show();
}
3. 配置.vscode


3.1 配置tasks.json

在args里面添加如下途径,根据自己的实际途径停止配置。
// matplotlibcpp
"-I", "F:\\c++_libraries\\matplotlibcpp",  // matplotlibcpp.h途径
"-I", "F:\\python3.7.8\\include",  // Python.h途径
"-I", "F:\\python3.7.8\\Lib\\site-packages\\numpy\\core\\include",  // numpy/arrayobject.h途径
"-L", "F:\\python3.7.8",  // python37.dll的所在目录
"-l", "python37"  // python37.dll动态库
3.2 配置c_cpp_properties.json

在includePath中添加如下途径,根据自己的实际途径停止配置。
// matplotlibcpp
"F:\\c++_libraries\\matplotlibcpp",  // matplotlibcpp.h途径
"F:\\python3.7.8\\include",  // Python.h途径
"F:\\python3.7.8\\Lib\\site-packages\\numpy\\core\\include"  // numpy/arrayobject.h途径
4. 注释掉matplotlibcpp.h中两行代码

配置完以后,假设直接运行,会报错matplotlibcpp.h中有两行反复定义,注释即可。官方代码也给出了提示。
// Sanity checks; comment them out or change the numpy type below if you're compiling on
// a platform where they don't apply
static_assert(sizeof(long long) == 8);
// template <> struct select_npy_type<long long> { const static NPY_TYPES type = NPY_INT64; };
static_assert(sizeof(unsigned long long) == 8);
// template <> struct select_npy_type<unsigned long long> { const static NPY_TYPES type = NPY_UINT64; };
5. 运行

最后运行即可,得到如下效果。
windows下vscode环境c++利用matplotlibcpp绘图-1.jpg

到此这篇关于windows下vscode环境c++利用matplotlibcpp绘图的文章就介绍到这了,更多相关vscode环境c++ matplotlibcpp绘图内容请搜索网站以前的文章或继续阅读下面的相关文章希望大家以后多多支持网站!

回复

举报 使用道具

全部回复
暂无回帖,快来参与回复吧
本版积分规则 高级模式
B Color Image Link Quote Code Smilies

战哥
注册会员
主题 21
回复 21
粉丝 0
|网站地图
快速回复 返回顶部 返回列表