【发布时间】:2017-07-05 09:51:39
【问题描述】:
考虑这个 y(x) 函数:
我们可以在文件中生成这些散点的位置:dataset_1D.dat:
# x y
0 0
1 1
2 0
3 -9
4 -32
以下是这些点的一维插值代码:
加载这个散点
创建
x_mesh执行一维插值
代码:
import numpy as np
from scipy.interpolate import interp2d, interp1d, interpnd
import matplotlib.pyplot as plt
# Load the data:
x, y = np.loadtxt('./dataset_1D.dat', skiprows = 1).T
# Create the function Y_inter for interpolation:
Y_inter = interp1d(x,y)
# Create the x_mesh:
x_mesh = np.linspace(0, 4, num=10)
print x_mesh
# We calculate the y-interpolated of this x_mesh :
Y_interpolated = Y_inter(x_mesh)
print Y_interpolated
# plot:
plt.plot(x_mesh, Y_interpolated, "k+")
plt.plot(x, y, 'ro')
plt.legend(['Linear 1D interpolation', 'data'], loc='lower left', prop={'size':12})
plt.xlim(-0.1, 4.2)
plt.grid()
plt.ylabel('y')
plt.xlabel('x')
plt.show()
这绘制了以下内容:
现在,考虑这个 z(x,y) 函数:
我们可以在文件中生成这些散点:dataset_2D.dat:
# x y z
0 0 0
1 1 0
2 2 -4
3 3 -18
4 4 -48
在这种情况下,我们必须执行 2D 插值:
import numpy as np
from scipy.interpolate import interp1d, interp2d, interpnd
import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
# Load the data:
x, y, z = np.loadtxt('./dataset_2D.dat', skiprows = 1).T
# Create the function Z_inter for interpolation:
Z_inter = interp2d(x, y, z)
# Create the x_mesh and y_mesh :
x_mesh = np.linspace(1.0, 4, num=10)
y_mesh = np.linspace(1.0, 4, num=10)
print x_mesh
print y_mesh
# We calculate the z-interpolated of this x_mesh and y_mesh :
Z_interpolated = Z_inter(x_mesh, y_mesh)
print Z_interpolated
print type(Z_interpolated)
print Z_interpolated.shape
# plot:
fig = plt.figure()
ax = Axes3D(fig)
ax.scatter(x, y, z, c='r', marker='o')
plt.legend(['data'], loc='lower left', prop={'size':12})
ax.set_xlabel('x')
ax.set_ylabel('y')
ax.set_zlabel('z')
plt.show()
这绘制了以下内容:
分散的数据再次以红点显示,与二维图保持一致。
-
我不知道如何解释
Z_interpolated结果:根据上述代码的打印行,
Z_interpolated是一个 n 维 numpy 数组,形状为 (10,10)。换句话说,一个 10 行 10 列的二维矩阵。
我希望 x_mesh[i] 和 y_mesh[i] 的每个值都有一个插入的 z[i] 值,为什么我没有收到这个?
- 如何在 3D 图中也绘制插值数据(就像 2D 图中的黑色十字)?
【问题讨论】:
标签: python numpy matplotlib linear-interpolation mplot3d