forked from kartikmohta/matplotlibcpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfill_inbetween.cpp
More file actions
29 lines (25 loc) · 757 Bytes
/
Copy pathfill_inbetween.cpp
File metadata and controls
29 lines (25 loc) · 757 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
29
#define _USE_MATH_DEFINES
#include "matplotlibcpp/matplotlibcpp.h"
#include <cmath>
#include <iostream>
using namespace std;
namespace plt = matplotlibcpp;
int main() {
// Prepare data.
int n = 5000;
std::vector<double> x(n), y(n), z(n), w(n, 2);
for (int i = 0; i < n; ++i) {
x.at(i) = i * i;
y.at(i) = sin(2 * M_PI * i / 360.0);
z.at(i) = log(i);
}
// Prepare keywords to pass to PolyCollection. See
// https://matplotlib.org/api/_as_gen/matplotlib.axes.Axes.fill_between.html
std::map<string, string> keywords;
keywords["alpha"] = "0.4";
keywords["color"] = "grey";
keywords["hatch"] = "-";
plt::init(); // Required for Python 3 (doesn't hurt for Python 2)
plt::fill_between(x, y, z, keywords);
plt::show();
}