中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c++ matplotlib如何繪制圖表

c++
小樊
86
2024-07-21 13:59:01
欄目: 編程語言

在C++中使用Matplotlib繪制圖表是通過Pybind11庫將C++代碼與Python代碼連接起來實現的。以下是一個基本的示例代碼:

  1. 首先,確保你已經安裝了Pybind11庫。

  2. 創建一個C++文件,例如main.cpp,并編寫以下代碼:

#include <pybind11/embed.h>
#include <iostream>

namespace py = pybind11;

int main() {
    py::scoped_interpreter guard{}; // Start the interpreter

    py::module plt = py::module::import("matplotlib.pyplot");
    
    // Create a list of x values
    py::list x = py::list();
    for (int i = 0; i < 10; i++) {
        x.append(i);
    }

    // Create a list of y values
    py::list y = py::list();
    for (int i = 0; i < 10; i++) {
        y.append(i * i);
    }

    // Plot the data
    plt.attr("plot")(x, y);

    // Show the plot
    plt.attr("show")();

    return 0;
}
  1. 編譯并運行代碼。在終端中輸入以下命令:
g++ -o main main.cpp -I /path/to/pybind11/include -lpython3.8
./main

這將打開一個圖表窗口,顯示由x和y數據點繪制的簡單折線圖。

請注意,這只是一個簡單的示例代碼。您可以使用Matplotlib的其他功能繪制不同類型的圖表,如散點圖、直方圖等。詳細信息,請參考Matplotlib的官方文檔。

0
呼图壁县| 莱州市| 弥勒县| 永和县| 鄱阳县| 渝中区| 江油市| 汾阳市| 宜宾县| 攀枝花市| 平南县| 莱西市| 綦江县| 九江市| 张掖市| 大洼县| 日喀则市| 婺源县| 砚山县| 河东区| 铜山县| 开平市| 涿州市| 图们市| 达州市| 营山县| 道孚县| 永福县| 浏阳市| 德江县| 夏邑县| 溧阳市| 靖西县| 连城县| 宝应县| 马公市| 姚安县| 乐都县| 商丘市| 准格尔旗| 宾川县|