- Matplotlib 基础
- Matplotlib - 首页
- Matplotlib - 简介
- Matplotlib - 与 Seaborn 的比较
- Matplotlib - 环境设置
- Matplotlib - Anaconda 发行版
- Matplotlib - Jupyter Notebook
- Matplotlib - Pyplot API
- Matplotlib - 简单绘图
- Matplotlib - 保存图形
- Matplotlib - 标记
- Matplotlib - 图形
- Matplotlib - 样式
- Matplotlib - 图例
- Matplotlib - 颜色
- Matplotlib - 色图
- Matplotlib - 色图归一化
- Matplotlib - 选择色图
- Matplotlib - 色标
- Matplotlib - 文本
- Matplotlib - 文本属性
- Matplotlib - 子图标题
- Matplotlib - 图像
- Matplotlib - 图像蒙版
- Matplotlib - 注释
- Matplotlib - 箭头
- Matplotlib - 字体
- Matplotlib - 什么是字体?
- 全局设置字体属性
- Matplotlib - 字体索引
- Matplotlib - 字体属性
- Matplotlib - 刻度
- Matplotlib - 线性和对数刻度
- Matplotlib - 对称对数和 Logit 刻度
- Matplotlib - LaTeX
- Matplotlib - 什么是 LaTeX?
- Matplotlib - LaTeX 用于数学表达式
- Matplotlib - LaTeX 在注释中的文本格式
- Matplotlib - PostScript
- 在注释中启用 LaTeX 渲染
- Matplotlib - 数学表达式
- Matplotlib - 动画
- Matplotlib - 艺术家
- Matplotlib - 使用 Cycler 样式化
- Matplotlib - 路径
- Matplotlib - 路径效果
- Matplotlib - 变换
- Matplotlib - 刻度和刻度标签
- Matplotlib - 弧度刻度
- Matplotlib - 日期刻度
- Matplotlib - 刻度格式化程序
- Matplotlib - 刻度定位器
- Matplotlib - 基本单位
- Matplotlib - 自动缩放
- Matplotlib - 反转轴
- Matplotlib - 对数轴
- Matplotlib - Symlog
- Matplotlib - 单位处理
- Matplotlib - 带单位的椭圆
- Matplotlib - 脊柱
- Matplotlib - 轴范围
- Matplotlib - 轴刻度
- Matplotlib - 轴刻度
- Matplotlib - 格式化轴
- Matplotlib - Axes 类
- Matplotlib - 双轴
- Matplotlib - Figure 类
- Matplotlib - 多图
- Matplotlib - 网格
- Matplotlib - 面向对象接口
- Matplotlib - PyLab 模块
- Matplotlib - Subplots() 函数
- Matplotlib - Subplot2grid() 函数
- Matplotlib - 固定艺术家
- Matplotlib - 手动等值线
- Matplotlib - 坐标报告
- Matplotlib - AGG 过滤器
- Matplotlib - 带状框
- Matplotlib - 填充螺旋线
- Matplotlib - Findobj 演示
- Matplotlib - 超链接
- Matplotlib - 图像缩略图
- Matplotlib - 使用关键字绘图
- Matplotlib - 创建 Logo
- Matplotlib - 多页 PDF
- Matplotlib - 多处理
- Matplotlib - 打印标准输出
- Matplotlib - 复合路径
- Matplotlib - Sankey 类
- Matplotlib - MRI 与 EEG
- Matplotlib - 样式表
- Matplotlib - 背景颜色
- Matplotlib - Basemap
- Matplotlib 事件处理
- Matplotlib - 事件处理
- Matplotlib - 关闭事件
- Matplotlib - 鼠标移动
- Matplotlib - 点击事件
- Matplotlib - 滚动事件
- Matplotlib - 按键事件
- Matplotlib - 选择事件
- Matplotlib - 放大镜
- Matplotlib - 路径编辑器
- Matplotlib - 多边形编辑器
- Matplotlib - 定时器
- Matplotlib - Viewlims
- Matplotlib - 缩放窗口
- Matplotlib 控件
- Matplotlib - 光标控件
- Matplotlib - 带注释的光标
- Matplotlib - 按钮控件
- Matplotlib - 复选框
- Matplotlib - 套索选择器
- Matplotlib - 菜单控件
- Matplotlib - 鼠标光标
- Matplotlib - 多光标
- Matplotlib - 多边形选择器
- Matplotlib - 单选按钮
- Matplotlib - RangeSlider
- Matplotlib - 矩形选择器
- Matplotlib - 椭圆选择器
- Matplotlib - 滑块控件
- Matplotlib - 跨度选择器
- Matplotlib - 文本框
- Matplotlib 绘图
- Matplotlib - 条形图
- Matplotlib - 直方图
- Matplotlib - 饼图
- Matplotlib - 散点图
- Matplotlib - 箱线图
- Matplotlib - 小提琴图
- Matplotlib - 等值线图
- Matplotlib - 3D 绘图
- Matplotlib - 3D 等值线
- Matplotlib - 3D 线框图
- Matplotlib - 3D 曲面图
- Matplotlib - Quiver 图
- Matplotlib 有用资源
- Matplotlib - 快速指南
- Matplotlib - 有用资源
- Matplotlib - 讨论
Matplotlib - 3D 线框图
3D 线框图是一种使用线条在三维空间中表示数据的方法,用来表示物体的形状。线框图连接物体的各个数据点,创建网格状结构来显示物体的形状。
想象一下我们有一个立方体,而不是绘制立方体的实心面,我们只显示描绘其边缘和角点的线条。我们得到的轮廓就是 3D 线框图 -
Matplotlib 中的 3D 线框图
在 Matplotlib 中,3D 线框图是一种可视化类型,其中数据由形成三维表面边缘的线网络表示。
我们可以使用 'mpl_toolkits.mplot3d' 模块中的 plot_wireframe() 函数在 Matplotlib 中创建 3D 线框图。此函数接受 3D 对象的 X、Y 和 Z 坐标,并用线连接这些坐标,以创建对象的 3D 轮廓。
让我们从绘制一个基本的 3D 线框图开始。
基本的 3D 线框图
Matplotlib 中的基本 3D 线框图将 3D 对象的表面显示为线网格,使您可以可视化表面的形状和结构。线框图是通过连接球体表面的一系列点形成的,这些点之间有沿 x、y 和 z 轴延伸的直线。
要创建线框图,您可以为要可视化的表面点的 x、y 和 z 坐标定义数组。然后,您可以将这些数组传递给 plot_wireframe() 函数以生成线框图。
示例
在以下示例中,我们正在创建一个球形表面的基本 3D 线框图。首先,我们通过使用角度“theta”和“phi”改变 X、Y 和 Z 点来生成球体。然后,我们使用 plot_wireframe() 函数创建连接球体数据点的线。在生成的图中,我们得到一个球形表面的 3D 线框图 -
import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D # Generating data for a spherical surface theta = np.linspace(0, 2*np.pi, 100) phi = np.linspace(0, np.pi, 100) theta, phi = np.meshgrid(theta, phi) r = 1 x = r * np.sin(phi) * np.cos(theta) y = r * np.sin(phi) * np.sin(theta) z = r * np.cos(phi) # Creating a 3D plot fig = plt.figure() ax = fig.add_subplot(111, projection='3d') # Plotting the spherical wireframe ax.plot_wireframe(x, y, z, color='blue') # Adding labels and title ax.set_xlabel('X') ax.set_ylabel('Y') ax.set_zlabel('Z') ax.set_title('Basic 3D Wireframe Plot') # Displaying the plot plt.show()
输出
以下是上述代码的输出 -
环形 3D 线框图
在 Matplotlib 中,环形 3D 线框图使用三维空间中的线表示环面的表面。环面是一个中间有孔的甜甜圈状物体。线框图连接环面表面的线以创建其轮廓。
示例
在这里,我们正在生成一个环形 3D 线框图。我们首先通过使用角度“theta”和“phi”以及主半径“R”和次半径“r”改变 X 和 Y 坐标来创建环面的表面,而 Z 坐标则随“r”和“phi”变化。然后,我们使用 plot_wireframe() 函数用线连接坐标,创建生成的图,该图表示环面的 3D 线框图 -
import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D # Generating data for a toroidal surface theta = np.linspace(0, 2*np.pi, 100) phi = np.linspace(0, 2*np.pi, 100) theta, phi = np.meshgrid(theta, phi) R = 2 r = 1 x = (R + r * np.cos(phi)) * np.cos(theta) y = (R + r * np.cos(phi)) * np.sin(theta) z = r * np.sin(phi) # Creating a 3D plot fig = plt.figure() ax = fig.add_subplot(111, projection='3d') # Plotting the toroidal wireframe ax.plot_wireframe(x, y, z, color='green') # Adding labels and title ax.set_xlabel('X') ax.set_ylabel('Y') ax.set_zlabel('Z') ax.set_title('Toroidal 3D Wireframe Plot') # Displaying the plot plt.show()
输出
执行上述代码后,我们将获得以下输出 -
抛物面 3D 线框图
Matplotlib 中的抛物面 3D 线框图使用三维图形上的线显示抛物面的轮廓。抛物面是一个三维抛物线,类似于碗。3D 线框图连接数据点以创建抛物面的网格状结构。
示例
以下示例在 3D 空间中创建抛物面的 3D 线框图。我们通过在 3D 图表上均匀间隔 X、Y 和 Z 来创建抛物面。然后,我们使用 plot_wireframe() 函数用线连接坐标以创建 3D 线框图 -
import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D # Generating data for a paraboloid surface x = np.linspace(-5, 5, 100) y = np.linspace(-5, 5, 100) X, Y = np.meshgrid(x, y) Z = X**2 + Y**2 # Creating a 3D plot fig = plt.figure() ax = fig.add_subplot(111, projection='3d') # Plotting the paraboloid wireframe ax.plot_wireframe(X, Y, Z, color='purple') # Adding labels and title ax.set_xlabel('X') ax.set_ylabel('Y') ax.set_zlabel('Z') ax.set_title('Paraboloid 3D Wireframe Plot') # Displaying the plot plt.show()
输出
执行上述代码后,我们将获得以下输出 -
圆柱体 3D 线框图
在 Matplotlib 中,圆柱体线框图是在三维空间中可视化圆柱体几何形状的一种方式。圆柱体是一种三维形状,其横截面为圆形,沿其长度延伸。圆柱体表面上的数据点用线连接起来以创建 3D 线框图。
示例
现在,我们正在 3D 图表上为圆柱体生成 3D 线框图。我们首先绘制表示圆柱体表面的 X 和 Y 坐标,通过使用半径“r”和角度“theta”(theta 范围为 0 到 2π 以覆盖整个圆形)改变它们。然后,我们绘制表示圆柱体高度的 Z 坐标。之后,我们使用 plot_wireframe() 函数用直线连接坐标。这将创建一个生成的图,该图显示圆柱体的 3D 线框图 -
import numpy as np import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D # Defining the parameters r = 1 h = 2 theta = np.linspace(0, 2*np.pi, 100) z = np.linspace(0, h, 10) # Generating cylinder coordinates theta_3d, z_3d = np.meshgrid(theta, z) x = r * np.cos(theta_3d) y = r * np.sin(theta_3d) # Creating a 3D plot fig = plt.figure() ax = fig.add_subplot(111, projection='3d') # Plotting the cylindrical wireframe ax.plot_wireframe(x, y, z_3d, color='orange') # Adding labels and title ax.set_xlabel('X') ax.set_ylabel('Y') ax.set_zlabel('Z') ax.set_title('Cylindrical 3D Wireframe Plot') # Displaying the plot plt.show()
输出
执行上述代码后,我们将获得以下输出 -