An open API service indexing awesome lists of open source software.

https://github.com/magnoefren/numpy-notebook


https://github.com/magnoefren/numpy-notebook

Last synced: 7 months ago
JSON representation

Awesome Lists containing this project

README

          

## fact_sheet_numpy

_metodos de numpy_

### Instalacion de numpy
```
pip install numpy
```

- arange(a, b) Función que devuelve una matriz con números enteros desde 'a' (incluido) hasta 'b' (no incluido).
```
x = np.arange(1,10)
print(x)
```
``1: [1 2 3 4 5 6 7 8 9]
``
- [x] arange
- [ ] greater_equal
- [ ] less_equal
- [ ] extract