| 1 | #include <matplot/matplot.h> |
| 2 | |
| 3 | int main() { |
| 4 | using namespace matplot; |
| 5 | |
| 6 | tiledlayout(2, 1); |
| 7 | |
| 8 | auto ax1 = nexttile(); |
| 9 | plot(ax1, rand(6, 6, 0, 1)); |
| 10 | |
| 11 | auto ax2 = nexttile(); |
| 12 | plot(ax2, rand(6, 6, 0, 1)); |
| 13 | xtickangle(ax2, 45); |
| 14 | |
| 15 | show(); |
| 16 | return 0; |
| 17 | } |
nothing calls this directly
no test coverage detected