La función numpy.take() devuelve elementos de la array a lo largo del eje y los índices mencionados.
Syntax: numpy.take(array, indices, axis = None, out = None, mode ='raise')
Parámetros:
array : array_like, input array indices : index of the values to be fetched axis : [int, optional] axis over which we need to fetch the elements; By Default[axis = None], flattened input is used mode : [{‘raise’, ‘wrap’, ‘clip’}, optional] mentions how out-of-bound indices will behave raise : [default]raise an error wrap : wrap around clip : clip to the range out : [ndarray, optional]to place result within array
Devoluciones :
ndarray; array has the same type
Python
# Python Program illustrating # numpy.take method import numpy as geek #array = geek.arange(10).reshape(2, 5) array = [[5, 6, 2, 7, 1], [4, 9, 2, 9, 3]] print("Original array : \n", array) # indices = [0, 4] print("\nTaking Indices\n", geek.take(array, [0, 4])) # indices = [0, 4] with axis = 1 print("\nTaking Indices\n", geek.take(array, [0, 4], axis = 1))
Producción :
Original array : [[5, 6, 2, 7, 1], [4, 9, 2, 9, 3]] Taking Indices [5 1] Taking Indices [[5 1] [4 3]]
Referencias:
https://docs.scipy.org/doc/numpy-dev/reference/generated/numpy.take.html#numpy.take
Nota:
estos códigos no se ejecutarán en IDE en línea. Así que, por favor, ejecútelos en sus sistemas para explorar el funcionamiento.
Este artículo es aportado por Mohit Gupta_OMG 😀 . Si te gusta GeeksforGeeks y te gustaría contribuir, también puedes escribir un artículo usando write.geeksforgeeks.org o enviar tu artículo por correo a review-team@geeksforgeeks.org. Vea su artículo que aparece en la página principal de GeeksforGeeks y ayude a otros Geeks.
Escriba comentarios si encuentra algo incorrecto o si desea compartir más información sobre el tema tratado anteriormente.
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA