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

Function main

examples/line_plot/loglog/loglog_7.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 std::vector<std::vector<double>> Y = {
8 {0.0010, 0.0100, 0.1000, 1.0000, 10.0000},
9 {0.0100, 0.1000, 1.0000, 10.0000, 100.0000},
10 {0.1000, 1.0000, 10.0000, 100.0000, 1000.0000}};
11 loglog(Y);
12
13 show();
14 return 0;
15}

Callers

nothing calls this directly

Calls 2

loglogFunction · 0.85
showFunction · 0.85

Tested by

no test coverage detected