Plot xyz point data to 3D contour

2 次查看(过去 30 天)
How to plot the xyz point data (attached) into 3D contour? Thank you

采纳的回答

Star Strider
Star Strider 2021-3-28
Try this:
D = readmatrix('data.txt');
x = D(~(any(isnan(D),2)),1);
y = D(~(any(isnan(D),2)),2);
z = D(~(any(isnan(D),2)),3);
N = 50;
xv = linspace(min(x), max(x), N);
yv = linspace(min(y), max(y), N);
[X,Y] = ndgrid(xv, yv);
Z = griddata(x, y, z, X, Y);
figure
surf(X, Y, Z)
.
  4 个评论
Amra Rajuli
Amra Rajuli 2021-4-12
what if the input is shape file. your code would be:
D = shaperead('Cross_9_Agustus_2020_A1.shp')
x = D.X(~(any(isnan(D),2)),4);!starting error
y = D.Y(~(any(isnan(D),2)),5);
z = D.Z(~(any(isnan(D),2)),6);
N = 100;
xv = linspace(min(x), max(x), N);
yv = linspace(min(y), max(y), N);
[X,Y] = ndgrid(xv, yv);
Z = griddata(x, y, z, X, Y);
figure
contour(X, Y, Z,10);
however, it was written in error part that:
Undefined function 'isnan' for input arguments of type 'struct'.
do you familiar with that problem? Thank you in advance
Star Strider
Star Strider 2021-4-12
The shaperead function requires the Mapping Toolbox, that I do not have.
I cannot run your code.
However, removing the NaN values from the structure would likely be straightforward:
Dnonan = structfun(@(x)x(~(any(isnan(x),2))),D, 'Unif',0);
x = Dnonan.X;
y = Dnonan.Y;
z = Dnonan.Z;
See if that does what you want. (It worked with a random structure I created to test this, with the fields of ‘D’ being column vectors.)
Make appropriate changes to get thee result you want.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Contour Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by