国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > Python > 正文

python matlibplot繪制3D圖形

2020-02-15 22:08:29
字體:
來源:轉載
供稿:網友

本文實例為大家分享了python matlibplot繪制3D圖形的具體代碼,供大家參考,具體內容如下

1、散點圖使用scatter

from mpl_toolkits.mplot3d import Axes3Dimport numpy as npfrom matplotlib import pyplot as plt# 生成3D示例數據mu_vec1 = np.array([0,0,0]) # 均值向量cov_mat1 = np.array([[1,0,0],[0,1,0],[0,0,1]]) # 協方差矩陣class1_sample = np.random.multivariate_normal(mu_vec1, cov_mat1, 20)class2_sample = np.random.multivariate_normal(mu_vec1 + 1, cov_mat1, 20)class3_sample = np.random.multivariate_normal(mu_vec1 + 2, cov_mat1, 20)# class1_sample.shape -> (20, 3), 20 rows, 3 columnsfig = plt.figure(figsize=(8,8))ax = fig.add_subplot(111, projection='3d')ax.scatter(class1_sample[:,0], class1_sample[:,1], class1_sample[:,2],   marker='x', color='blue', s=40, label='class 1')ax.scatter(class2_sample[:,0], class2_sample[:,1], class2_sample[:,2],   marker='o', color='green', s=40, label='class 2')ax.scatter(class3_sample[:,0], class3_sample[:,1], class3_sample[:,2],   marker='^', color='red', s=40, label='class 3')ax.set_xlabel('variable X')ax.set_ylabel('variable Y')ax.set_zlabel('variable Z')plt.title('3D Scatter Plot')plt.show()

2、直線使用plot3D

from mpl_toolkits.mplot3d import Axes3Dimport matplotlib.pyplot as pltimport numpy as npfrom itertools import product, combinationsfig = plt.figure(figsize=(7,7))ax = fig.gca(projection='3d')ax.set_aspect("equal")# 畫點 # 立方體里的點X_inside = np.array([[0,0,0],[0.2,0.2,0.2],[0.1, -0.1, -0.3]])X_outside = np.array([[-1.2,0.3,-0.3],[0.8,-0.82,-0.9],[1, 0.6, -0.7],      [0.8,0.7,0.2],[0.7,-0.8,-0.45],[-0.3, 0.6, 0.9],      [0.7,-0.6,-0.8]])for row in X_inside: ax.scatter(row[0], row[1], row[2], color="r", s=50, marker='^')for row in X_outside: ax.scatter(row[0], row[1], row[2], color="k", s=50)# 畫立方體h = [-0.5, 0.5]for s, e in combinations(np.array(list(product(h,h,h))), 2): if np.sum(np.abs(s-e)) == h[1]-h[0]:  ax.plot3D(*zip(s,e), color="g")ax.set_xlim(-1.5, 1.5)ax.set_ylim(-1.5, 1.5)ax.set_zlim(-1.5, 1.5)plt.show()

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持武林站長站。

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 牙克石市| 吴旗县| 南陵县| 郁南县| 且末县| 永泰县| 吴堡县| 铅山县| 闻喜县| 会泽县| 西畴县| 闵行区| 屯门区| 收藏| 余姚市| 许昌市| 渝北区| 娄烦县| 呼和浩特市| 岳西县| 板桥市| 永寿县| 阿巴嘎旗| 商河县| 巴林左旗| 台北县| 米泉市| 天气| 洪洞县| 班玛县| 小金县| 潞城市| 射阳县| 阜阳市| 萍乡市| 比如县| 平远县| 团风县| 龙游县| 沧源| 鹤山市|