Plots a surface coloring by layers (using contour curves)

Creates a surface and applies color by layers. Different elevation levels are clearly identified.
1K download
Aggiornato 13 apr 2010

Visualizza la licenza

Different elevations cannot be identified with standard matlab functions such as surf, even changing FaceColor attribute to activate interpolation. In contrast, with this function alows one can define contour levels and different colors are applied to each level.

Instead of using surf(x,y,z), you use surflayers(x,y,z,[5 10 15 20]);
The quality of the results may depende on the layer falues that you select. Sometimes surflayers is not very accurate, but in general produces very good results.

% [s m]=surflayers2(X,Y,Z,layers)
% Plots a surface coloring by layers (using contour curves).
% This function creates a surface using different colors for contours
% values defined in arguments layers, and a transparent mesh with black
% lines on top.
%
% Input Arguments
% X,Y: Vectors or matrices with oordinates of the grid (if unknow see
% Example2 below)
% Z: Matrix of elevations
% layers: vector of contour values
%
% Optional Outputs
% s: handler of the colored surface
% m: handler of the mesh
% (This handlers allow to chage image properties using set(s, ...) call)
%
% Example1:
% [x,y,z]=peaks;
% [s m]=surflayers(x,y,z,[-6.25 -3 -1.5 0 1.75 3.5 6 8]);
%
% Example2:
% L=membrane(1,10);
% x=1:size(L,1);
% y=1:size(L,2);
% [s m]=surflayers(x,y,L,[-0.15, 0, 0.25 .5 .75 .98]);
%
% Author: Rafael Palacios,
% Universidad Pontificia Comillas, Massachusetts Institute of Technology
% http://www.iit.upcomillas.es/palacios
% Version 1, April 2010
%

Cita come

Rafael Palacios (2024). Plots a surface coloring by layers (using contour curves) (https://www.mathworks.com/matlabcentral/fileexchange/27242-plots-a-surface-coloring-by-layers-using-contour-curves), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R2009b
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Surface and Mesh 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