Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Matplotlib를 사용하여 복소수(Argand Diagram)를 그리는 방법은 무엇입니까?

<시간/>

matplotlib를 사용하여 복소수를 플롯하기 위해 복소수로 데이터 세트를 만들 수 있습니다.

단계

  • 그림 크기를 설정하고 서브플롯 사이 및 주변 여백을 조정합니다.
  • 임의의 복소수를 생성합니다.
  • subplots()를 사용하여 그림과 서브플롯 세트 생성 방법.
  • scatter()를 사용하여 산점도를 표시합니다. 방법.
  • 그림을 표시하려면 show()를 사용하세요. 방법.

예시

import numpy as np
from matplotlib import pyplot as plt
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True
data = np.random.rand(10) + 1j*np.random.rand(10)
fig, ax = plt.subplots()
ax.scatter(data.real, data.imag, c=data.real, cmap="RdYlBu_r")
plt.show()

출력

Matplotlib를 사용하여 복소수(Argand Diagram)를 그리는 방법은 무엇입니까?