forked from lava/matplotlib-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfill_inbetween.cpp
More file actions
32 lines (27 loc) · 961 Bytes
/
Copy pathfill_inbetween.cpp
File metadata and controls
32 lines (27 loc) · 961 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
30
31
32
#define _USE_MATH_DEFINES
#include "../matplotlibcpp.h"
#include <cmath>
#include <iostream>
using namespace std;
namespace plt = matplotlibcpp;
#include <xtensor/xbuilder.hpp>
#include <xtensor/xtensor.hpp>
int main() {
// Prepare data.
int n = 5000;
xt::xtensor<double, 1> i = xt::linspace<double>(0, (n-1), n);
std::array<std::size_t,1> shape{static_cast<std::size_t>(n)};
xt::xtensor<double, 1> w(shape);
w.fill(2.0);
xt::xtensor<double, 1> x = xt::square(i);
xt::xtensor<double, 1> y = xt::sin(2 * xt::numeric_constants<double>::PI * i / 360.0);
xt::xtensor<double, 1> z = xt::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::fill_between(x, y+2, z, keywords);
plt::show();
}