Highlighting columns in figure

3 次查看(过去 30 天)
I have made a figure showing the values of a matrix by relative colorvalues [have made use of imagesc(matrix)]. I would like two highlight two colums (say 7 and 19) by making them lighter.
As such the final result will be a two highlighted vertical bands in the figure.
Any sugestions as to how I can do this?

采纳的回答

Desiree
Desiree 2011-8-8
You can use property AlphaData to make certain columns transparent:
h = imagesc(rand(10));
ad = ones(10); ad(:,2) = 0.5; ad(:,7) = 0.5;
set(h,'AlphaData',ad)
  2 个评论
Athos
Athos 2011-8-8
Thank you, that worked great.
However, I have a small question. If I use axis, they seem to be mirrored (together with the labels) by this method. How could I fix this?
Athos
Athos 2011-8-8
Nevermind, the problem went away when I saved the figure.

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by