https://github.com/magnoefren/numpy-notebook
https://github.com/magnoefren/numpy-notebook
Last synced: 7 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/magnoefren/numpy-notebook
- Owner: MagnoEfren
- Created: 2022-11-01T07:42:40.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-12-24T02:05:52.000Z (almost 3 years ago)
- Last Synced: 2025-01-06T00:13:36.064Z (9 months ago)
- Language: Jupyter Notebook
- Size: 5.86 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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