Effacer les filtres
Effacer les filtres

Plot xyz point data to 3D contour

2 vues (au cours des 30 derniers jours)
Amra Rajuli
Amra Rajuli le 28 Mar 2021
Commenté : Star Strider le 12 Avr 2021
How to plot the xyz point data (attached) into 3D contour? Thank you
  1 commentaire
Amra Rajuli
Amra Rajuli le 28 Mar 2021
the xy data is not evenly space or irregular

Connectez-vous pour commenter.

Réponse acceptée

Star Strider
Star Strider le 28 Mar 2021
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 commentaires
Amra Rajuli
Amra Rajuli le 12 Avr 2021
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 le 12 Avr 2021
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.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Contour Plots dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by