| 1 | #include <matplot/matplot.h> |
| 2 | |
| 3 | int main() { |
| 4 | using namespace matplot; |
| 5 | |
| 6 | auto x = linspace(0, 10000, 21); |
| 7 | auto y = transform(x, [](double x) { return pow(x, 2); }); |
| 8 | stem(x, y); |
| 9 | |
| 10 | std::cout << "xtickangle(): " << xtickangle() << std::endl; |
| 11 | |
| 12 | show(); |
| 13 | return 0; |
| 14 | } |
nothing calls this directly
no test coverage detected