Contour lines above surf or mesh plot (plot viewed top down)

2 次查看(过去 30 天)
Hi,
I want to plot an array in top down view and have contour lines (with labels) above the colormap. Now the colormap is placed over the contour lines for some values, because the contour plot is at z=0 and some values in the array larger than z=0. When I set FaceAlpha to 0.5 the contour lines are somewhat visible, but this isn't exactly an elegant solution.
Does somebody have a good solution?
This is the code I use:
clear all;
close all;
clc;
data=importdata('depth averaged velocity 2010 referentie.mat');
[tt,m,n]=size(data.XComp);
T = input('Choose Timepoint T:');
zx=data.XComp(T,:,:); % picks flow velocity at t=T from flow velocity matrix
zy=data.YComp(T,:,:);
zx=reshape(zx,m,n); % zx isn't plotted in this script
zy=reshape(zy,m,n);
hold on
surf(data.X,data.Y,zy,'FaceAlpha',0.5);
view(2);
shading flat
colormap(flipud(colormap));
[c,h]=contour(data.X,data.Y,zy,'k',);
clabel(c,h);
hold off

回答(1 个)

Babak
Babak 2012-12-12
You have a typo at this line:
[c,h]=contour(data.X,data.Y,zy,'k',);
Change it to
[c,h]=contour(data.X,data.Y,zy,'k');
If you need better resolution for the contourmap, you need to use, meshgrid() for your data.X and data.Y and use finer grids! I mean if you are having
data.X = linspace(-1,1,100);
Change it to
data.X = linspace(-1,1,200);
which has more points and creates a finer mesh.
You would also want to swap these the two lines of contour and colormap, use
...
[c,h]=contour(data.X,data.Y,zy,'k',);
colormap(flipud(colormap));
...
  1 个评论
Wilbert
Wilbert 2012-12-12
编辑:Wilbert 2012-12-12
A point-for-point reply:
- I made that typo only here, it's not in my script.
- About the resolution of the contour line, the resolution is good enough. It's a fairly large grid of several km^2.
- I have swapped the two lines, is indeed more efficient.
But your answer doesn't solve my problem at all. The resolution of the grid isn't the problem. The problem is that the contour lines aren't always on top, but are under the colormap. I attached two plots to help visualizing the problem.
The last figure shows the problem, the contour lines are under the colormap. Changing the transparancy solves the problem a bit, but that's not the solution I am looking for.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Contour Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by