Loading folder/numpy.ipynb 0 → 100644 +29 −0 Original line number Diff line number Diff line %% Cell type:code id:b94f08cd tags: ``` python import numpy as np import matplotlib.pyplot as plt A = np.array([1, 3, 7, 8, 18]) print(A) y=[-2,1,2,3,7] plt.plot(A, y) plt.grid(True) plt.show() ``` %% Output [ 1 3 7 8 18] %% Cell type:code id:91a0c687 tags: ``` python ``` %% Cell type:code id:27e54459 tags: ``` python ``` Loading
folder/numpy.ipynb 0 → 100644 +29 −0 Original line number Diff line number Diff line %% Cell type:code id:b94f08cd tags: ``` python import numpy as np import matplotlib.pyplot as plt A = np.array([1, 3, 7, 8, 18]) print(A) y=[-2,1,2,3,7] plt.plot(A, y) plt.grid(True) plt.show() ``` %% Output [ 1 3 7 8 18] %% Cell type:code id:91a0c687 tags: ``` python ``` %% Cell type:code id:27e54459 tags: ``` python ```