initial commit
This commit is contained in:
11
plotting.py
Normal file
11
plotting.py
Normal file
@@ -0,0 +1,11 @@
|
||||
import matplotlib as plt
|
||||
import numpy as np
|
||||
|
||||
def plot_sine():
|
||||
xpoints = np.array([1,8])
|
||||
ypoints = np.array([3,10])
|
||||
|
||||
plt.plot(xpoints,ypoints)
|
||||
plt.show()
|
||||
|
||||
plot_sine()
|
||||
Reference in New Issue
Block a user