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

Function main

examples/line_plot/fimplicit/fimplicit_4.cpp:3–13  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#include <matplot/matplot.h>
2
3int main() {
4 using namespace matplot;
5
6 fimplicit([](double x, double y) { return y * sin(x) + x * cos(y); })
7 ->color("r")
8 .line_style("--")
9 .line_width(2);
10
11 show();
12 return 0;
13}

Callers

nothing calls this directly

Calls 5

fimplicitFunction · 0.85
showFunction · 0.85
line_styleMethod · 0.80
line_widthMethod · 0.45
colorMethod · 0.45

Tested by

no test coverage detected