#include #include int main() { using namespace matplot; std::vector theta = iota(pi / 4, pi / 4, 2 * pi); std::vector rho = {19, 6, 12, 18, 16, 11, 15, 15}; polarscatter(theta, rho); show(); return 0; }