forked from alandefreitas/matplotplusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbar_8.cpp
More file actions
28 lines (23 loc) · 684 Bytes
/
bar_8.cpp
File metadata and controls
28 lines (23 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <cmath>
#include <matplot/matplot.h>
#include <random>
int main() {
using namespace matplot;
std::vector<double> x = {1, 2, 3};
std::vector<std::vector<double>> y = {{2, 3, 6}, {11, 23, 26}};
auto b = bar(x, y);
std::vector<double> label_x;
std::vector<double> label_y;
std::vector<std::string> labels;
for (size_t i = 0; i < y.size(); ++i) {
for (size_t j = 0; j < x.size(); ++j) {
label_x.emplace_back(b->x_end_point(i, j));
label_y.emplace_back(y[i][j] + 1);
labels.emplace_back(num2str(y[i][j]));
}
}
hold(on);
text(label_x, label_y, labels);
show();
return 0;
}