#include #include int main() { using namespace matplot; std::vector theta = linspace(0, 2 * pi, 20); std::vector rho = rand(20, 0, 1); double size = 10; polarscatter(theta, rho, size, "filled"); show(); return 0; }