MCPcopy Create free account
hub / github.com/alandefreitas/matplotplusplus / main

Function main

examples/line_plot/fplot/fplot_5.cpp:4–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2#include <matplot/matplot.h>
3
4int 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}

Callers

nothing calls this directly

Calls 6

fplotFunction · 0.85
showFunction · 0.85
line_styleMethod · 0.80
marker_colorMethod · 0.80
colorMethod · 0.45
markerMethod · 0.45

Tested by

no test coverage detected