1 Star 3 Fork 0

quxiaofeng/matplotplusplus

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
Clone or Download
legend_5.cpp 483 Bytes
Copy Edit Raw Blame History
#include <cmath>
#include <matplot/matplot.h>
int main() {
using namespace matplot;
auto x = linspace(0, pi);
auto y1 = transform(x, [](double x) { return cos(x); });
auto y2 = transform(x, [](double x) { return cos(2 * x); });
auto y3 = transform(x, [](double x) { return cos(3 * x); });
auto p1 = plot(x, y1);
hold(on);
plot(x, y2);
auto p3 = plot(x, y3);
hold(off);
legend({p1, p3}, {"First", "Third"});
show();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/quxiaofeng/matplotplusplus.git
git@gitee.com:quxiaofeng/matplotplusplus.git
quxiaofeng
matplotplusplus
matplotplusplus
master

Search