Generating gridded data out of data points

3 次查看(过去 30 天)
Hello,
i have three vectors containing the x,y and z coordinates of data points. Is it possible to convert these vectors into "gridded data" ? And how? Thanks for the help!

回答(1 个)

Adam Danz
Adam Danz 2018-8-9
Is this what you're looking for?
help surf
help meshgrid
  1 个评论
Lukas Sohlbach
Lukas Sohlbach 2018-8-9
Not exactly. I'm trying to use this example on my data. In the beginning they are doing this:
x = sort([(0:10)/10,.03 .07, .93 .97]);
y = sort([(0:6)/6,.03 .07, .93 .97]);
[xx,yy] = ndgrid(x,y); % note: ndgrid rather than meshgrid
z = franke(xx,yy);
i want to use this code with three vectors as input and not the "franke" funktion. The vectors contain the x,y and z values of data Points. I want to fit a tensor product spline to my data

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Spline Postprocessing 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by