créer une matrice avec un python complexe
>>> Z = np.array([[1+2j,1+3j],[5+6j,3+8j]])
>>> Z
array([[ 1.+2.j, 1.+3.j],
[ 5.+6.j, 3.+8.j]])
Wild Whale
>>> Z = np.array([[1+2j,1+3j],[5+6j,3+8j]])
>>> Z
array([[ 1.+2.j, 1.+3.j],
[ 5.+6.j, 3.+8.j]])