How to get a tilted slice in 3-D data?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Yinchao Chen
am 3 Mär. 2017
Kommentiert: Yinchao Chen
am 3 Mär. 2017
By using slice in MATLAB, I can get a slice plot which is perpendicular to the axes. But I was wondering how to get a tilted slice (not perpendicular to the axes), like the picuture shown?

0 Kommentare
Akzeptierte Antwort
Aniruddha Katre
am 3 Mär. 2017
Bearbeitet: Star Strider
am 3 Mär. 2017
See the section about slicing at arbitrary angles of the documentation page for the slice function.
Here's a quick example:
% Data
[x, y, z] = meshgrid(-3:1:3);
v = x.^2 + y.^2 + z.^2;
% Data defining a surface
[xs, ys] = meshgrid(-3:1:3);
zs = -xs + ys;
% Slice along it
slice(x, y, z, v, xs, ys, zs)
colorbar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Surface and Mesh Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!