我试图理解TriScatteredInterp
Matlab 中的。我按照帮助文件中的示例程序进行操作。
x = rand(100,1)*4-2;
y = rand(100,1)*4-2;
z = x.*exp(-x.^2-y.^2);
Construct the interpolant:
F = TriScatteredInterp(x,y,z);
我观察到 FX 与 x 和 y 相同,FV 与 z 相同;
ti = -2:.25:2;
[qx,qy] = meshgrid(ti,ti);
qz = F(qx,qy);
我认为线性插值是在qz = F(qx,qy);
. 它如何用于线性插值?谢谢