| 2 | #include <matplot/matplot.h> |
| 3 | |
| 4 | int main() { |
| 5 | using namespace matplot; |
| 6 | |
| 7 | auto fp = fplot([](double x) { return sin(x); }); |
| 8 | fp->line_style(":"); |
| 9 | fp->color("r"); |
| 10 | fp->marker("x"); |
| 11 | fp->marker_color("b"); |
| 12 | |
| 13 | show(); |
| 14 | return 0; |
| 15 | } |
nothing calls this directly
no test coverage detected