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