How to plot colorbar in matlab?
이전 댓글 표시
Hi,
I am interested to see the colorbar of a column vector, for example: A(6x1)=[1;2;0.01;4;5;6]. Can you please give me some idea how can I do it?
Thanks D Bhuiyan
답변 (2개)
Thomas Koelen
2015년 4월 13일
a=[1:6];
b=[2 3 4 2 1 3];
bar(a,b)
KL
2015년 4월 13일
0 개 추천
You should use filled contour plot with legend. Check contourf() and clegendm()
카테고리
도움말 센터 및 File Exchange에서 Colorbar에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!