4D Interpolation scattered Data

21 visualizzazioni (ultimi 30 giorni)
Hi,
I have a set of all Coordinate Points (x,y,z) of my irregular shaped geometry and I have a set of data (xc,yc,zc,C) with C = value of interest. I want now to determine for every x,y,z of my geometry the value C.
I tried using but the results are not what i want:
[XXCoor, YYCoor, ZZCoor]=meshgrid(xc, yc, zc)
Cm = griddata(xc,yc,zc,C,XXCoor,YYCoor,ZZCoor);
scatter3(XXCoor(:),YYCoor(:),ZZCoor(:),4,Cm(:),'filled');
for illustration here is one picture with the datapoints x,y,z and one picture of plot what I tried. Like you can see the geometry is a facemask and i want C only on the facemask and not in the inner volume.
Maybe you can help me
best regards , Alex
  3 Commenti
Alexander Schwarzwälder
Alexander Schwarzwälder il 23 Nov 2020
Modificato: Alexander Schwarzwälder il 23 Nov 2020
Attached are the files xyz.csv in the form of x|y|z coordinates of my geometry and the file Values in the form of x|y|z|Value (Humidity).
I want to find a Value for each x|y|z of the geometry given by xyz.csv.
If file xyz.csv is too large simply delete more lines. I delted already a lot but I do not want to lose the characteristics of the geometry as well.
Thanks for the fast reply!
PS: The few coordinates of the file Values.csv are not represented exactly by a value in xyz.csv but the coordinates are in the geometry.
Alexander Schwarzwälder
Alexander Schwarzwälder il 23 Nov 2020
something that migth work bette ris the scatterInterpolant but I did not understand it completely in my case.

Accedi per commentare.

Risposta accettata

Alexander Schwarzwälder
Alexander Schwarzwälder il 23 Nov 2020
Modificato: Alexander Schwarzwälder il 23 Nov 2020
Hi guys, somehow I found the solution I want by a lot of experimenting :D At least it looks like something I want.
F = scatteredInterpolant(Xcoor, Ycoor, Zcoor,Cvapor);
scatter3(px,py,pz,4,F(px,py,pz),'filled');
I really appriciate your quick response to the post!
  2 Commenti
Nora Khaled
Nora Khaled il 23 Nov 2020
looks really nice
Hau Trien
Hau Trien il 23 Mag 2022
I am doing the similar thing and just found your comment here. What are your px, py, pz in this case?

Accedi per commentare.

Più risposte (1)

John D'Errico
John D'Errico il 23 Nov 2020
Sorry, but you cannot use tools like griddata or scatteredInterpolant to interpolate non-single valued relations. It seems all you have are a set of scattered points from some general manifold embedded in R^3.
You probably need to work with the surface, perhaps as generated from a CRUST algorithm.

Categorie

Scopri di più su Interpolation in Help Center e File Exchange

Prodotti


Release

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by