Write a NumPy program to sort a given complex array using the real part first, then the imaginary part
- برمجة بايثون
- 2021-09-13
- mhanasmh00489829403
الأجوبة
import numpy as np
complex_num = [1 + 2j, 3 - 1j, 3 - 2j, 4 - 3j, 3 + 5j]
print("Original array:")
print(complex_num)
print("\nSorted a given complex array using the real part first, then the imaginary part.")
print(np.sort_complex(complex_num))
Sample Output:
Original array: [(1+2j), (3-1j), (3-2j), (4-3j), (3+5j)] Sorted a given complex array using the real part first, then the imaginary part. [1.+2.j 3.-2.j 3.-1.j 3.+5.j 4.-3.j]
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال