I want to plot custom colorbar of lines plotted on the image. Kindly suggest me a solution.

2 views (last 30 days)
NColors = 10;
RGBn = linspecer(NColors);
moon = imread('moon.tif');
imshow(moon);
quiver(0,0,5,5,'color',mycol); %mycol is conditionally selected from RGBn; multiple arrows are plotted on the image
colorbar % shows the colorbar of moon. But I want to display the colorbar of my custom 10 colors. Is that possible?

Answers (1)

Walter Roberson
Walter Roberson on 2 Oct 2016
colormap(RGBn)
after the imshow() and before the colorbar()

Categories

Find more on Earth and Planetary Science in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!