FaceAlpha of bar3 plot smaller than 1 ruins rest of the plot

1 vue (au cours des 30 derniers jours)
Sven Schulze
Sven Schulze le 16 Juin 2016
Commenté : Sven Schulze le 17 Juin 2016
Hello,
I am trying to generate the same plot as shown in the picture under 1). I got as far as shown under 2a) on the right hand side of the picture. As soon as I change the FaceAlpha of the surface of the bar3 plot the rest of the plot (area and contour) gets shaded as well (see 2b).
I create the figure as followed:
contourf(n_ICE_map_neu,Tq_ICE_map,bsfc_ICE_map,'Fill','on')
hold all
area(n_ICE_map_neu,Tq_ICE_max_map,'BaseValue',2400,'FaceColor',[1 1 1]);
plot(n_ICE_map_neu,Tq_ICE_max_map)
bar3(Tq_vector,matrix_pct)
I use MATLAB 2016a. Does anybody can help me to fix that problem?
Best regards
Sven

Réponses (1)

Sven
Sven le 16 Juin 2016
Hi Sven,
We don't have your data (and we don't even know which of your variables are matrices, which are vectors etc.), so we can't make your figure. But it looks like you're having trouble getting all of the bars to be transparent. Try this:
N = 12;
Z = peaks(N);
figure
contourf(1:N,1:N,Z,'Fill','on')
hold on
b = bar3(Z);
set(b,'FaceAlpha',0.15,'FaceColor',[1 1 1]*0.9)
view(3)
Did that help?
  1 commentaire
Sven Schulze
Sven Schulze le 17 Juin 2016

Hi Sven,

thanks for your answer. I changed the FaceAlpha for all the bars according to you answer but the problem still remains...I attached all the required data. The matfile dataset contains all the matrices and vectors. The script create_figure generates the figure shown below based on the data. It seems that the problem occurs due to the overlaying of the contour plot and the area plot.

Is there a way of fixing it?

Best regards

Sven

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by