在C++中使用Matplotlib添加圖例可以通過以下代碼實現:
#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;
}
在上面的代碼中,我們首先創建了一個包含x和y值的向量,然后使用plt::plot()
函數繪制了這些值的折線圖,并通過添加"label", "Line 1"
參數來指定圖例的標簽為"Line 1"。最后調用plt::legend()
函數來添加圖例,并調用plt::show()
函數顯示繪制的圖形。
通過這種方式,可以在C++中使用Matplotlib添加圖例。