diff --git a/helo3.py b/helo3.py new file mode 100644 index 0000000..8ba87a2 --- /dev/null +++ b/helo3.py @@ -0,0 +1,14 @@ +# importing the required modules +import matplotlib.pyplot as plt +import numpy as np + +# setting the x - coordinates +x = np.arange(0, 2*(np.pi), 0.1) +# setting the corresponding y - coordinates +y = np.sin(x) + +# potting the points +plt.plot(x, y) + +# function to show the plot +plt.show()