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

조회 수: 2 (최근 30일)
Wilbert
Wilbert 2012년 12월 11일
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