Skip to content

Commit

Permalink
Encore une coquille
Browse files Browse the repository at this point in the history
  • Loading branch information
linogaliana committed Jul 27, 2020
1 parent 5041b28 commit 200b6c1
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions content/01_data/01_tp_numpy.md
Expand Up @@ -234,13 +234,13 @@ Si on désire faire un ré-ordonnement partiel pour trouver les _k_ valeurs les
np.partition(x, 3)
```

```python
## Broadcasting

Le broadcasting désigne un ensemble de règles pour appliquer une opération qui normalement ne s'applique que sur une seule valeur à l'ensemble des membres d'un tableau Numpy.

Le broadcasting nous permet d'appliquer ces opérations sur des tableaux de dimensions différentes.

```python
a = np.array([0, 1, 2])

b = np.array([5, 5, 5])
Expand Down Expand Up @@ -342,6 +342,4 @@ np.reshape
np.concatenate
np.split, np.hsplit, and np.vsplit

```python

```

0 comments on commit 200b6c1

Please sign in to comment.