Polar Function 1ezpolar(fn); Plot C++ 1 2 3 4 5 6 7 8 9 10 11#include <cmath> #include <matplot/matplot.h> int main() { using namespace matplot; ezpolar("1+cos(t)"); show(); return 0; } More examples Plot C++ 1 2 3 4 5 6 7 8 9 10 11#include <cmath> #include <matplot/matplot.h> int main() { using namespace matplot; ezpolar([](double t) { return 1. + cos(t); }); show(); return 0; }