import data and plat a 3D

1 次查看(过去 30 天)
Verena Salan
Verena Salan 2019-12-20
评论: Rik 2020-1-6
I do have a excel file with 3 columns (x y z). I wanna import them to Matlab, and plot a nice surface Plot.i might have to interpolate?
  2 个评论
Rik
Rik 2019-12-20
If it is a full grid of x and y, there will be no need for interpollation. Can you share your actual data, or a functional equivalent?

请先登录,再进行评论。

回答(2 个)

Rik
Rik 2019-12-20
No interpollation required, just a conversion to a 2D matrix. You can adapt the syntax of accumarray if you do have any missing values (by default it will fill with 0).
num=xlsread('test1.xlsx');
x=num(:,1);
y=num(:,2);
P=num(:,3);
%find the unique x and y values and use them as indices to fill the Z
[X,~,x_]=unique(x);
[Y,~,y_]=unique(y);
Z=accumarray([x_,y_],P);
[X,Y]=ndgrid(X,Y);
surf(X,Y,Z)
  10 个评论
Rik
Rik 2020-1-6
On a conceptual level, what would you do? If you needed to do it on paper, what would your approach be?

请先登录,再进行评论。


ME
ME 2019-12-20
I think you are correct about the need to interpolate. You could try having a read of the link below - that should give you some good pointers.

类别

Help CenterFile Exchange 中查找有关 Surface and Mesh Plots 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by