4d smooth plot with slices
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hello I have a txt file (I have attached it as "Data.txt") with 4 columns, each representing a variable x,y,z,v. I plot this in the following manner:
load("Data.txt")
x = Data(:,1);
y = Data(:,2);
z = Data(:,3);
v = Data(:,4);
scatter3(x,y,z,40,v,'filled')
colorbar

However I would like it to be a smooth object on which I can also take vertical, horizontal or whatever slices.
5 commentaires
Adam Danz
le 20 Jan 2021
Z must be a matrix. X and Y can be matricies the same size as Z or vectors that define the rows and columns of Z. V has several options but the easiest is probably a matrix the same size as Z.
Anyway, the slice function Bjorn mentioned may be better to accomplish you goal of taking slices of the object.
Plus de réponses (1)
Bjorn Gustavsson
le 20 Jan 2021
I suggest you use the slice function for that, this type of plots is what that function was designed for.
If your Data are not on a regular grid you will have to re-interpolate it to a regular x-y-z grid. You can do that using scatteredInterpolant, see the help and documentation for how to use that.
If your data is on a regular plaid grid you simply have to reshape the data into 3-D arrays. After that is done you can slice to your hearts desires:
slice(x3d,y3d,z3d,V,[1,2,exp(1),3,pi],[0,log(2),2^.5],1+sqrt(5)/2),shading flat
HTH
1 commentaire
Voir également
Catégories
En savoir plus sur 2-D and 3-D 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!