#include #include int main() { using namespace matplot; std::vector theta = linspace(0, 360, 50); std::vector rho = transform(theta, [](double t) { return 0.005 * t / 10.; }); std::vector th_radians = deg2rad(theta); auto s = polarscatter(th_radians, rho); show(); return 0; }