Skip to content

Polar Function

1
ezpolar(fn);

example_ezpolar_1

 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

example_ezpolar_2

 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;
}