| 5 | namespace bh = boost::histogram; |
| 6 | |
| 7 | int main() { |
| 8 | /* |
| 9 | create a 1d-histogram in default configuration which |
| 10 | covers the real line from -1 to 1 in 100 bins, the same |
| 11 | call with `make_dynamic_histogram` would also work |
| 12 | */ |
| 13 | auto h = bh::make_static_histogram(bh::axis::regular<>(100, -1, 1)); |
| 14 | |
| 15 | // do something with h |
| 16 | } |
| 17 | |
| 18 | //] |
nothing calls this directly
no test coverage detected