Commit 50627319 authored by Bruno Kalinowski's avatar Bruno Kalinowski
Browse files

Upload New File

parent 26f5df4f
Loading
Loading
Loading
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
```