c++ matplotlib怎樣添加圖例

c++
小樊
93
2024-07-21 14:11:01

在C++中使用Matplotlib添加圖例可以通過(guò)以下代碼實(shí)現(xiàn):

#include <iostream>
#include "matplotlibcpp.h"

namespace plt = matplotlibcpp;

int main() {
    std::vector<double> x = {1, 2, 3, 4, 5};
    std::vector<double> y = {10, 15, 13, 18, 16};

    plt::plot(x, y, "b-", "label", "Line 1");
    plt::legend();
    plt::show();

    return 0;
}

在上面的代碼中,我們首先創(chuàng)建了一個(gè)包含x和y值的向量,然后使用plt::plot()函數(shù)繪制了這些值的折線圖,并通過(guò)添加"label", "Line 1"參數(shù)來(lái)指定圖例的標(biāo)簽為"Line 1"。最后調(diào)用plt::legend()函數(shù)來(lái)添加圖例,并調(diào)用plt::show()函數(shù)顯示繪制的圖形。

通過(guò)這種方式,可以在C++中使用Matplotlib添加圖例。

0