Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import numpy as np
- resultados = [2, 3.11, 7, 19]
- # Todos los valores son tipo flotante:
- arreglo_resultados = np.array(resultados)
- print(arreglo_resultados)
- print('')
- # Crear arreglo de valores numéricos complejos:
- primos = [2, 3, 11, 23]
- arreglo_complejos = np.array(primos, dtype=complex)
- print(arreglo_complejos)
- print('')
- # Definición de matrices:
- matrix = np.array([[2, 3], [11, 23]])
- print(matrix)
- print('')
- # Creación de arreglo vacío:
- arreglo_vacio = np.empty([3, 3], dtype=int)
- print(arreglo_vacio)
- print('')
- # Arreglo con ceros:
- ceros = np.zeros((3, 2), dtype=float)
- print(ceros)
- print('')
- # Arreglo con unos:
- unos = np.ones((3, 2), dtype=int)
- print(unos)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement