import scipy.io as sio  
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt

a = [1,2,3,4,5]
b = [1,2,3,4,5]
c = [1,2,3,4,5]

ax=plt.subplot(111,projection='3d')
ax.scatter(a,b,c,c='r')
ax.set_zlabel('Z') 
ax.set_ylabel('Y')
ax.set_xlabel('X')
plt.show()

 

相关文章:

  • 2022-12-23
  • 2021-11-17
  • 2021-11-29
  • 2022-12-23
  • 2021-11-29
  • 2021-11-29
猜你喜欢
  • 2021-11-11
  • 2021-09-17
  • 2021-12-14
  • 2021-07-22
  • 2021-04-12
  • 2021-12-15
  • 2021-10-31
相关资源
相似解决方案