forked from alandefreitas/matplotplusplus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistogram_3.cpp
37 lines (28 loc) · 910 Bytes
/
histogram_3.cpp
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
33
34
35
36
37
#include <cmath>
#include <matplot/matplot.h>
#include <random>
int main() {
using namespace matplot;
std::vector<double> x = randn(10000, 0, 1);
subplot(2, 3, 0);
auto a = histogram::binning_algorithm::automatic;
hist(x, a, histogram::normalization::count);
title("Count (c_i)");
subplot(2, 3, 1);
hist(x, a, histogram::normalization::probability);
title("Probability (c_i/N)");
subplot(2, 3, 2);
hist(x, a, histogram::normalization::cummulative_count);
title("Cummulative count (∑_{j=1}^i c_j)");
subplot(2, 3, 3);
hist(x, a, histogram::normalization::count_density);
title("Count density (c_i/w_i)");
subplot(2, 3, 4);
hist(x, a, histogram::normalization::pdf);
title("PDF (c_i/(N w_i))");
subplot(2, 3, 5);
hist(x, a, histogram::normalization::cdf);
title("CDF (∑_{j=1}^i c_j/N)");
show();
return 0;
}