matplotlib ~ 3D 그래프에 점 작성
2823 단어 파이썬matplotlib
prot_3d.py
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
fig = plt.figure()
ax = Axes3D(fig)
ax.set_xlabel("X")
ax.set_ylabel("Y")
ax.set_zlabel("Z")
ax.set_xlim(-300,300)
ax.set_ylim(-300,300)
ax.set_zlim(-200,200)
x = 0
y = 0
z = 0
ax.plot([x],[y],[z],marker="o",linestyle='None')
plt.show()
Reference
이 문제에 관하여(matplotlib ~ 3D 그래프에 점 작성), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/hoshianaaa/items/9bd2956bdbaf36016252텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)