#include #include int main() { using namespace matplot; std::vector theta = linspace(0, 6 * pi); std::vector rho1 = transform(theta, [](auto t) { return t / 10.; }); polarplot(theta, rho1); std::vector rho2 = transform(theta, [](auto t) { return t / 12.; }); hold(on); polarplot(theta, rho2, "--"); hold(off); show(); return 0; }