Advertisement
Fhernd

crear-arreglos-numpy.py

Feb 11th, 2018
1,086
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.70 KB | None | 0 0
  1. import numpy as np
  2.  
  3.  
  4. resultados = [2, 3.11, 7, 19]
  5.  
  6. # Todos los valores son tipo flotante:
  7. arreglo_resultados = np.array(resultados)
  8. print(arreglo_resultados)
  9.  
  10. print('')
  11.  
  12. # Crear arreglo de valores numéricos complejos:
  13. primos = [2, 3, 11, 23]
  14. arreglo_complejos = np.array(primos, dtype=complex)
  15. print(arreglo_complejos)
  16.  
  17. print('')
  18.  
  19. # Definición de matrices:
  20. matrix = np.array([[2, 3], [11, 23]])
  21. print(matrix)
  22.  
  23. print('')
  24.  
  25. # Creación de arreglo vacío:
  26. arreglo_vacio = np.empty([3, 3], dtype=int)
  27. print(arreglo_vacio)
  28.  
  29. print('')
  30.  
  31. # Arreglo con ceros:
  32. ceros = np.zeros((3, 2), dtype=float)
  33. print(ceros)
  34.  
  35. print('')
  36.  
  37. # Arreglo con unos:
  38. unos = np.ones((3, 2), dtype=int)
  39. print(unos)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement