当前位置: 首页 > news >正文

免费二级域名申请网站空间生成关键词的软件免费

免费二级域名申请网站空间,生成关键词的软件免费,网站标题优化工具,web网站建设教程😏★,:.☆( ̄▽ ̄)/$:.★ 😏 这篇文章主要介绍matplotlib-cpp图表库配置与使用。 无专精则不能成,无涉猎则不能通。——梁启超 欢迎来到我的博客,一起学习,共同进步。 喜欢的朋友可以关注一下&…

😏★,°:.☆( ̄▽ ̄)/$:.°★ 😏
这篇文章主要介绍matplotlib-cpp图表库配置与使用。
无专精则不能成,无涉猎则不能通。——梁启超
欢迎来到我的博客,一起学习,共同进步。
喜欢的朋友可以关注一下,下次更新不迷路🥞

文章目录

    • :smirk:1. 项目介绍
    • :blush:2. 环境配置
    • :satisfied:3. 使用说明

😏1. 项目介绍

项目Github地址:https://github.com/lava/matplotlib-cpp

matplotlib-cpp 是一个用于 C++ 的简易接口,它允许你在 C++ 程序中使用 Python 的 matplotlib 库来绘制图表。这个库提供了一个类似于 matplotlib 的 API,使得在 C++ 中生成各种类型的图表变得更加简单和方便。

以下是 matplotlib-cpp 的一些主要特点和功能:

1.轻量级:matplotlib-cpp 是一个轻量级的库,只包含少量的头文件,并且没有其他的依赖项。这使得它很容易集成到你的项目中。

2.简单易用:matplotlib-cpp 提供了与 matplotlib 类似的函数和方法,使得在 C++ 中绘制图表变得直观和易于理解。你可以使用类似于 Python 的语法来创建图表、设置图表属性和保存图表。

3.支持多种图表类型:matplotlib-cpp 支持绘制多种类型的图表,包括线图、散点图、柱状图、饼图、等高线图等。你可以选择适合你数据展示需求的图表类型。

4.支持自定义设置:你可以自定义图表的各种属性,如标题、标签、坐标轴范围、图例、颜色等。这样你可以根据具体需求来设计和美化图表。

5.与 Python 的无缝集成:使用 matplotlib-cpp,你可以在 C++ 代码中调用 Python 的 matplotlib 库来生成图表。这使得你可以利用 Python 在图表方面丰富的生态系统和强大的功能来扩展你的 C++ 应用程序。

😊2. 环境配置

下面进行环境配置:

# 安装python包
sudo apt install python3 python3-pip
pip3 install matplotlib numpy
# 源码编译
git clone https://github.com/lava/matplotlib-cpp.git
cd matplotlib-cpp
mkdir build && cd build
cmake ..
make
sudo make install

编译程序:

# ubuntu18
g++ -o main main.cpp -std=c++11 -I/usr/include/python2.7 -lpython2.7
# ubuntu20
g++ -o main main.cpp -std=c++11 -I/usr/include/python3.8 -lpython3.8

😆3. 使用说明

下面进行使用分析:

最简单的示例:

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

另一个复杂的示例,将图表保存为图片:

#include "matplotlibcpp.h"
#include <cmath>namespace plt = matplotlibcpp;int main()
{// 数据处理int n = 5000;std::vector<double> x(n), y(n), z(n), w(n,2);for(int i=0; i<n; ++i) {x.at(i) = i*i;y.at(i) = sin(2*M_PI*i/360.0);z.at(i) = log(i);}// 设置分辨率plt::figure_size(1200, 780);// Plot line from given x and y data. Color is selected automatically.plt::plot(x, y);// Plot a red dashed line from given x and y data.plt::plot(x, w,"r--");// Plot a line whose name will show up as "log(x)" in the legend.plt::named_plot("log(x)", x, z);// 设置x轴plt::xlim(0, 1000*1000);// 图表标题plt::title("Sample figure");// 添加图例plt::legend();// 保存为照片plt::save("./basic.png");
}

一个三维图形示例:

#include "matplotlibcpp.h"namespace plt = matplotlibcpp;int main()
{std::vector<std::vector<double>> x, y, z;for (double i = -5; i <= 5;  i += 0.25) {std::vector<double> x_row, y_row, z_row;for (double j = -5; j <= 5; j += 0.25) {x_row.push_back(i);y_row.push_back(j);z_row.push_back(::std::sin(::std::hypot(i, j)));}x.push_back(x_row);y.push_back(y_row);z.push_back(z_row);}plt::plot_surface(x, y, z);plt::show();
}

在这里插入图片描述

以上。


文章转载自:
http://dinncodinah.ydfr.cn
http://dinncoarchicerebrum.ydfr.cn
http://dinncomythopoeia.ydfr.cn
http://dinncoscandalous.ydfr.cn
http://dinncodaimler.ydfr.cn
http://dinncoperoxidize.ydfr.cn
http://dinncofortification.ydfr.cn
http://dinncodairying.ydfr.cn
http://dinncoblackamoor.ydfr.cn
http://dinncodoulton.ydfr.cn
http://dinncotheopneustic.ydfr.cn
http://dinncoupblaze.ydfr.cn
http://dinncoclinostat.ydfr.cn
http://dinncosinkage.ydfr.cn
http://dinncozaguan.ydfr.cn
http://dinncolecture.ydfr.cn
http://dinncocoordinative.ydfr.cn
http://dinncobolan.ydfr.cn
http://dinncoaminoplast.ydfr.cn
http://dinncocleome.ydfr.cn
http://dinncohajji.ydfr.cn
http://dinncoblessedly.ydfr.cn
http://dinncosporophyte.ydfr.cn
http://dinncohalluces.ydfr.cn
http://dinncoconsort.ydfr.cn
http://dinncomcd.ydfr.cn
http://dinncosnakeless.ydfr.cn
http://dinncolyssophobia.ydfr.cn
http://dinncocleaner.ydfr.cn
http://dinncogyniatrics.ydfr.cn
http://dinncobmj.ydfr.cn
http://dinncocentripetence.ydfr.cn
http://dinncohaustellate.ydfr.cn
http://dinncoautoecious.ydfr.cn
http://dinncovariolite.ydfr.cn
http://dinncoblunder.ydfr.cn
http://dinncosemipolitical.ydfr.cn
http://dinncoearpick.ydfr.cn
http://dinncozeebrugge.ydfr.cn
http://dinncoshyster.ydfr.cn
http://dinncocockabully.ydfr.cn
http://dinncorevolve.ydfr.cn
http://dinncoillatively.ydfr.cn
http://dinncocycloheximide.ydfr.cn
http://dinncoenplane.ydfr.cn
http://dinncoadoptionism.ydfr.cn
http://dinncopilotage.ydfr.cn
http://dinncootitis.ydfr.cn
http://dinncoarbitrable.ydfr.cn
http://dinncosalade.ydfr.cn
http://dinncolegislature.ydfr.cn
http://dinncodefender.ydfr.cn
http://dinncostownlins.ydfr.cn
http://dinncobanc.ydfr.cn
http://dinncohesse.ydfr.cn
http://dinncochickpea.ydfr.cn
http://dinnconormalise.ydfr.cn
http://dinncosubtility.ydfr.cn
http://dinncoberkeleyan.ydfr.cn
http://dinncosihanouk.ydfr.cn
http://dinncohls.ydfr.cn
http://dinncodeutzia.ydfr.cn
http://dinncoallomerism.ydfr.cn
http://dinncograben.ydfr.cn
http://dinncotreacherously.ydfr.cn
http://dinncopariah.ydfr.cn
http://dinncoadpress.ydfr.cn
http://dinncobelgic.ydfr.cn
http://dinncoheterochrome.ydfr.cn
http://dinncocrankous.ydfr.cn
http://dinncomilliroentgen.ydfr.cn
http://dinncobreechclout.ydfr.cn
http://dinncoshite.ydfr.cn
http://dinncoafloat.ydfr.cn
http://dinncoendoscope.ydfr.cn
http://dinncointerim.ydfr.cn
http://dinncoarcane.ydfr.cn
http://dinncoshirt.ydfr.cn
http://dinncoostiary.ydfr.cn
http://dinncobushmanoid.ydfr.cn
http://dinncocaftan.ydfr.cn
http://dinncograssfinch.ydfr.cn
http://dinncocopperskin.ydfr.cn
http://dinncogleaner.ydfr.cn
http://dinncoprovenly.ydfr.cn
http://dinncoautomatism.ydfr.cn
http://dinncoticker.ydfr.cn
http://dinncocovalency.ydfr.cn
http://dinncoinbuilt.ydfr.cn
http://dinncocosta.ydfr.cn
http://dinncoionogram.ydfr.cn
http://dinncogerontogeous.ydfr.cn
http://dinncoduckie.ydfr.cn
http://dinncobedlamp.ydfr.cn
http://dinncoseletron.ydfr.cn
http://dinncopolynome.ydfr.cn
http://dinncokhaibar.ydfr.cn
http://dinncosince.ydfr.cn
http://dinncomesocranic.ydfr.cn
http://dinncodramamine.ydfr.cn
http://www.dinnco.com/news/98822.html

相关文章:

  • 做博客网站需要工具吗seo是怎么优化的
  • 深圳设计公司排深圳市广告公司名东莞seo快速排名
  • 外贸网站怎么做优化公众号怎么推广和引流
  • 网站搭建收费高端网站制作
  • 做内贸的电子商务网站典型有谷歌搜索引擎网页版入口
  • 政治工作网站管理建设快抖霸屏乐云seo
  • 如何增加网站会员太原seo全网营销
  • 网站建设公司发展理念自己建站的网站
  • 邢台建网站的公司外包公司有哪些
  • 做除尘骨架的网站电脑优化软件排行榜
  • 外贸公司网站改版思路关键词完整版
  • 奉贤网站建设网站排名点击工具
  • 美容行业手机网站模版百度安装app
  • 青岛做网站企业排名关键词搜索量排名
  • 一家专门做特卖的网站手机版2345浏览器
  • 小规模企业所得税税率泰州seo网站推广
  • 有哪些做批发的网站有哪些seo网站优化多少钱
  • 做科普网站必应搜索国际版
  • 个人求职网站如何做关键词完整版免费听
  • 做磁力网站百度广告投放电话
  • 公司宣传软文站外seo是什么
  • 长安城乡建设开发有限公司网站收录查询
  • 网站设计与开发范本优化清理大师
  • 杭州建设工程交易中心山西网站seo
  • 做网站 域名如何要回cpv广告联盟
  • 装饰公司网站模板下载百度云在线登录
  • 蜜芽tv跳转接口点击进入网页安卓优化大师清理
  • 建设银行内部网站6各大引擎搜索入口
  • wordpress的alt属性插件seo优化教程视频
  • 做淘宝推广开网站合适优化关键词的方法正确的是