Plots a surface coloring by layers (using contour curves)

Creates a surface and applies color by layers. Different elevation levels are clearly identified.
1K descargas
Actualizado 13 abr 2010

Ver licencia

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
%

Citar como

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. Recuperado .

Compatibilidad con la versión de MATLAB
Se creó con R2009b
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Surface and Mesh Plots en Help Center y MATLAB Answers.

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
1.0.0.0