colorbar for specified color

2 次查看(过去 30 天)
Yu Li
Yu Li 2018-9-28
编辑: jonas 2018-9-28
Hi:
I want to add a colorbar in Matlab like below:
is there anyway to do this in Matlab?
Thanks!
Yu

采纳的回答

jonas
jonas 2018-9-28
编辑:jonas 2018-9-28
Based on the data and code given below in the comments, you can build a custom colorbar with textboxes. The result is quite nice!
The below code shows the steps involved, however it cannot be executed without adding it to the code which is provided by OP in the comments.
p=cbp.Position;
w=p(3)/numel(sg)
cmap=colormap(jet(length(sg)))
str=sprintfc('\n Class %g',1:numel(sg))
for i=1:numel(sg)
annotation('textbox',[p(1)+w*(i-1) p(2) w*0.95 p(4)],'backgroundcolor',cmap(i,:),'string',str{i})
end
  8 个评论
Yu Li
Yu Li 2018-9-28
编辑:Yu Li 2018-9-28
fantastic, thank you very much.
Please revise your first answer with this one, to let other people easier to find this answer. and I'll accept it after you revise it.
jonas
jonas 2018-9-28
Happy to help! Yes, I was going to do that but wanted to wait until you were satisfied :)

请先登录,再进行评论。

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by