Horje
matplotlib show imaginary numbers Code Example
matplotlib show imaginary numbers
cnums = np.arange(5) + 1j * np.arange(6,11)
X = [x.real for x in cnums]
Y = [x.imag for x in cnums]
plt.scatter(X,Y, color='red')
plt.show()




Python

Related
how to loc all cells except python Code Example how to loc all cells except python Code Example
python check my gpu Code Example python check my gpu Code Example
pandas return first row Code Example pandas return first row Code Example
how to select/sort all the columns except one in python Code Example how to select/sort all the columns except one in python Code Example
how to make a alert box in python Code Example how to make a alert box in python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7