numpy.sort_complex()
La función se usa para ordenar una array compleja. Ordena la array usando primero la parte real y luego la parte imaginaria.
Sintaxis: numpy.sort_complex(arr)
Parámetros:
arr: [array_like] Array de entrada.Devuelve: [complex ndarray] Una array compleja ordenada.
Código #1:
# Python program explaining # sort_complex() function import numpy as geek # input array in_arr = [2, 8, 7, 5, 9] print ("Input array : ", in_arr) out_arr = geek.sort_complex(in_arr) print ("Output sorted array : ", out_arr)
Producción:
Input array : [2, 8, 7, 5, 9] Output sorted array : [ 2.+0.j 5.+0.j 7.+0.j 8.+0.j 9.+0.j]
Código #2:
# Python program explaining # sort_complex() function import numpy as geek # input array in_arr = [2 + 4j, 5 + 9j, 3 - 2j, 4 - 3j, 3 + 5j, 2-4j, 5] print ("Input array : ", in_arr) out_arr = geek.sort_complex(in_arr) print ("Output sorted array : ", out_arr)
Producción:
Input array : [(2+4j), (5+9j), (3-2j), (4-3j), (3+5j), (2-4j), 5] Output sorted array : [ 2.-4.j 2.+4.j 3.-2.j 3.+5.j 4.-3.j 5.+0.j 5.+9.j]
Publicación traducida automáticamente
Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA