Plots a surface coloring by layers (using contour curves)

版本 1.0.0.0 (2.1 KB) 作者: Rafael Palacios
Creates a surface and applies color by layers. Different elevation levels are clearly identified.
1.0K 次下载
更新时间 2010/4/13

查看许可证

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
%

引用格式

Rafael Palacios (2025). 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. 检索时间: .

MATLAB 版本兼容性
创建方式 R2009b
兼容任何版本
平台兼容性
Windows macOS Linux
类别
Help CenterMATLAB Answers 中查找有关 Surface and Mesh Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!
版本 已发布 发行说明
1.0.0.0