How to slice 3d data in xyzv vector format
4 次查看(过去 30 天)
显示 更早的评论
Hi,
I have a set of 3d data which contains xyzv in vectors, xyz are the coordinates i.e. x is 113104x1 double from -0.0197 to 0.0197, so do y and z, v is the value of data on each coordinate.
I have manage to plot the data set with: scatter3(x,y,z,ones(size(x))*50,v,'filled'); colorbar;
But how can I slice the sphere and take a look inside?
Thank you!
0 个评论
回答(1 个)
Jos
2014-8-18
Hi,
think this should work, fill in the x value for the slice you want to look at
xslice = 0;
scatter(y(x==xslice),z(x==xslice),ones(size(y(x==xslice)))*50,v(x==xslice))
colorbar
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Distribution Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!