我想使用 c# 插入一个表面。情况如下:
给出了一组 x,y,z 坐标。现在我想使用更精细的网格在这些点之间进行插值。其实我想知道某个点的z坐标,例如x=2.2,y=1.6 z=??。
我能够使用 MatLab 解决插值问题,但使用 c# 时没有成功。此外,我能够用非数字绘制曲面,并试图在他们的主页上找到一些信息。
编辑:
我想我需要澄清一些事情 - 抱歉我的问题令人困惑
在这里你可以看到我是如何从一些点画出表面的:
using System;
using System.Drawing;
using System.Windows.Forms;
using ILNumerics;
using ILNumerics.Drawing;
using ILNumerics.Drawing.Plotting;
namespace Surface
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void ilPanel1_Load(object sender, EventArgs e)
{
using (ILScope.Enter())
{
ILArray<float> R = ILMath.linspace<float>(0, 5, 5);
ILArray<float> R1 = ILMath.linspace<float>(0, 25, 5);
ILArray<float> y = 1;
ILArray<float> x = ILMath.meshgrid(R, R, y);
ILArray<float> z = ILMath.meshgrid(R * R, R, y);
ILArray<float> Z = ILMath.zeros<float>(x.S[0], x.S[1], 3);
Z[":;:;1"] = x;
Z[":;:;2"] = y;
Z[":;:;0"] = z;
ilPanel1.Scene.Add(new ILPlotCube(twoDMode: false) {
new ILSurface(Z, colormap: Colormaps.Cool) {
Colors = 1.4f * x * x * x + 0.13f * y * y,
Childs = { new ILColorbar() }
}
});
}
}
}
}
x 和 y 坐标从 0 到 5 呈线性分布,z 坐标具有二次形状。我现在想知道某个 x,y 坐标处 z 坐标的值,例如 x=2.2, y=1.6 z =?? - 这绝对不是我表面上的一个已知点。所以我认为用“更精细”的网格对表面进行插值是个好主意,这样我就可以读出 z 坐标的值......