Answers for "create matrix with complex python"

0

create matrix with complex python

>>> 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]])
Posted by: Guest on January-10-2022

Python Answers by Framework

Browse Popular Code Answers by Language