top of page
Search

PYTHON CODING

  • Writer: waclaw_koscielniak
    waclaw_koscielniak
  • 29 minutes ago
  • 1 min read

import matplotlib.pyplot as plt import numpy as np theta = np.linspace(0, 12*np.pi, 500) r = theta**(np.cos(theta/4)) plt.polar(theta, r, color='red', linewidth=3) plt.title("Polar Plot") plt.show()



Try to run it.
Try to run it.


















 
 
 

1 Comment


Guest
23 minutes ago

Try to verify.

Like
bottom of page