Python中函数的彩色网格图 [英] Colored mesh plot of a function in Python

查看:357
本文介绍了Python中函数的彩色网格图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试绘制一个像这样的行波的彩色网格图(只是忽略灰色背景):

I am trying to draw a colored mesh plot of a travelling wave like this (just ignore the grey background):

我正在查看显示的示例通过Python进行3D着色的表面吗?,但是我不确定如何适应我的函数z:

I am looking at the example shown in How to obtain 3D colored surface via Python?, but I'm not sure how to adapt it for my function z:

from mpl_toolkits.mplot3d import axes3d, art3d
import matplotlib.pyplot as plt
import numpy as np
import matplotlib as mpl

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')

X = T = np.arange(0,10,0.1)
z = np.array([np.cos(2*np.pi*(x/3.0-t/6.0)) for x,t in zip(np.ravel(X), np.ravel(T))])
Z = z.reshape(X.shape)
#X, Y, Z = axes3d.get_test_data(0.05)
wire = ax.plot_wireframe(X, T, Z, rstride=10, cstride=10)


# Retrive data from internal storage of plot_wireframe, then delete it
nx, nt, _  = np.shape(wire._segments3d)
wire_x = np.array(wire._segments3d)[:, :, 0].ravel()
wire_t = np.array(wire._segments3d)[:, :, 1].ravel()
wire_z = np.array(wire._segments3d)[:, :, 2].ravel()
wire.remove()

# create data for a LineCollection
wire_x1 = np.vstack([wire_x, np.roll(wire_x, 1)])
wire_t1 = np.vstack([wire_t, np.roll(wire_t, 1)])
wire_z1 = np.vstack([wire_z, np.roll(wire_z, 1)])
to_delete = np.arange(0, nx*ny, ny)
wire_x1 = np.delete(wire_x1, to_delete, axis=1)
wire_t1 = np.delete(wire_t1, to_delete, axis=1)
wire_z1 = np.delete(wire_z1, to_delete, axis=1)
scalars = np.delete(wire_z, to_delete)

segs = [list(zip(xl, tl, zl)) for xl, tl, zl in \
                 zip(wire_x1.T, wire_t1.T, wire_z1.T)]

# Plots the wireframe by a  a line3DCollection
my_wire = art3d.Line3DCollection(segs, cmap="hsv")
my_wire.set_array(scalars)
ax.add_collection(my_wire)

ax.set_title(r'Travelling wave , $z=f(x,t)=\cos(2\pi(x/3-t/6))$')
ax.set_xlabel(r'$x$', fontsize=16)
ax.set_ylabel(r'$t_0$', fontsize=16)
ax.set_zlabel(r'$z$', fontsize=16)

plt.show()

推荐答案

np.meshgrid()是您的朋友:

from mpl_toolkits.mplot3d import axes3d, art3d
import matplotlib.pyplot as plt
import numpy as np


fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')

x, t = np.arange(0,10,0.1), np.arange(0,10,0.1)
X, T = np.meshgrid(x, t)  # generate two 100x100 arrays
Z = np.cos(2*np.pi*(X/3.0 - T/6.0))


wire = ax.plot_wireframe(X, T, Z, rstride=10, cstride=10)

# Retrive data from internal storage of plot_wireframe, then delete it
nx, ny, _  = np.shape(wire._segments3d)
wire_x = np.array(wire._segments3d)[:, :, 0].ravel()
wire_y = np.array(wire._segments3d)[:, :, 1].ravel()
wire_z = np.array(wire._segments3d)[:, :, 2].ravel()
wire.remove()

# create data for a LineCollection
wire_x1 = np.vstack([wire_x, np.roll(wire_x, 1)])
wire_y1 = np.vstack([wire_y, np.roll(wire_y, 1)])
wire_z1 = np.vstack([wire_z, np.roll(wire_z, 1)])
to_delete = np.arange(0, nx*ny, ny)
wire_x1 = np.delete(wire_x1, to_delete, axis=1)
wire_y1 = np.delete(wire_y1, to_delete, axis=1)
wire_z1 = np.delete(wire_z1, to_delete, axis=1)
scalars = np.delete(wire_z, to_delete)

segs = [list(zip(xl, yl, zl)) for xl, yl, zl in \
                 zip(wire_x1.T, wire_y1.T, wire_z1.T)]

# Plots the wireframe by a  a line3DCollection
my_wire = art3d.Line3DCollection(segs, cmap="hsv")
my_wire.set_array(scalars)
ax.add_collection(my_wire)

plt.colorbar(my_wire)


#cl1 = fig.colorbar(pl1)
#cl1.set_label("$z$-axis")
fig.suptitle(r'Travelling wave $z=f(x,t)=\cos(2\pi(x/3-t/6))$')
ax.set_xlabel(r'$x$', fontsize=16)
ax.set_ylabel(r'$t_0$', fontsize=16)
ax.set_zlabel(r'$z$', fontsize=16)

fig.canvas.draw()
plt.show()

结果为.

这篇关于Python中函数的彩色网格图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆