surf_slices(varargi​n)

Plot 3D data as series of slices in specified axis
114 download
Aggiornato 19 gen 2018

Visualizza la licenza

Rather than plotting a 3D volume, instead plot a series of slices.
Like surf() except without interpolation in one of the axes.
surf_slices(Z): slices of matrix Z where size(Z)=[m,n]
surf_slices(x,y,Z): slices of matrix Z, where length(x)=n and length(y)=m
surf_slices(x,y,Z,'axis',axis): Change slicing axis (either 1 or 2)
The plot is constructed by overlaying a surf plot with a series of lines plotted along the ridges of the slices.
To reveal the mesh structure of the plot, use:
ax = gca;
ax.Children(end) = 'k';
Note that because a slice has a finite width (the width is the separation of the axis points), you may cut off the end of the data if you set the axis limits manually.

Cita come

Talfan Evans (2024). surf_slices(varargin) (https://www.mathworks.com/matlabcentral/fileexchange/65757-surf_slices-varargin), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2016b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Line Plots in Help Center e MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0

Added image to submission. Fixed axis limits.
Added lines to the edges of the slices (where they cross the data limits) for visual clarity.
Fixed bug where plotting the transpose of a matrix causes the overlaid lines to be drawn incorrectly, even when setting 'axis'=2.
Fixed option parsing bug.