1 Star 3 Fork 0

quxiaofeng/matplotplusplus

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
.github
cmake
documentation
examples
annotations
appearance
axes
axis
camera
cla
CMakeLists.txt
cla_1.cpp
cla_2.cpp
cla_3.cpp
colormaps
figure
grid
labels
line_spec
multiplot
CMakeLists.txt
contour_plots
data_distribution
discrete_data
exporting
geography
graphs
images
line_plot
polar_plots
surfaces
vector_fields
CMakeLists.txt
source
test
.clang-format
.gitignore
CMakeLists.txt
LICENSE
README.md
examples.md
gallery.md
matplot++-config.cmake.in
克隆/下载
cla_2.cpp 336 Bytes
一键复制 编辑 原始数据 按行查看 历史
#include <iostream>
#include <matplot/matplot.h>
#include <set>
#include <thread>
#include <vector>
int main() {
using namespace matplot;
tiledlayout(2, 1);
auto ax1 = nexttile();
auto [x, y, z] = peaks();
surf(x, y, z);
auto ax2 = nexttile();
contour(x, y, z);
cla(ax1);
show();
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/quxiaofeng/matplotplusplus.git
git@gitee.com:quxiaofeng/matplotplusplus.git
quxiaofeng
matplotplusplus
matplotplusplus
master

搜索帮助