コード:複素数平面
code:abc.py
import matplotlib.pyplot as plt
import math
import numpy as np
plt.xlabel('Real',fontsize=14)
plt.ylabel('Imaginary',fontsize=14)
for _x in np.linspace(-180,180,360):
x.append(math.sin(math.radians(_x)))
y.append(math.cos(math.radians(_x)))
plt.plot(x,y,color = 'k')
plt.plot(-1/2,np.sqrt(3)/2,marker='.',markersize = 15)
plt.plot(-1/2,-np.sqrt(3)/2,marker='.',markersize = 15)
plt.plot(1/2,np.sqrt(3)/2,marker='.',markersize = 15)
plt.plot(1/2,-np.sqrt(3)/2,marker='.',markersize = 15)
plt.axes().set_aspect('equal','datalim')
plt.show()
https://scrapbox.io/files/60174add598abe00211b51a3.png