How do I create a color bar to correspond to my jet color scheme?

71 ビュー (過去 30 日間)
Alexandria Will-Cole
Alexandria Will-Cole 2018 年 11 月 13 日
コメント済み: Alexandria Will-Cole 2018 年 11 月 14 日
I've used the jet function to create a gradient of color, such that every color is a different voltage. How do I make a color bar given the RGB array I made with the jet function and assign the max and min voltage values on the color bar for my figure? Thanks!

採用された回答

Chad Greene
Chad Greene 2018 年 11 月 13 日
編集済み: Chad Greene 2018 年 11 月 13 日
Try this:
Plot some data:
surf(peaks)
Change the colormap*:
colormap(jet)
Add a colorbar and put a label on it:
cb = colorbar;
ylabel(cb,'voltage')
Set colorbar limits:
caxis([-8 4])
That'll create this figure:
* But note, there are some perceptual issues with using jet to represent numbers. For those reason's the jet colormap has fallen out of fashion in recent years. Read up on #endrainbow if you're curious to know more.
  4 件のコメント
Steven Lord
Steven Lord 2018 年 11 月 13 日
Please create a small synthetic dataset (say ten to twenty points) that is similar to your actual data and show the code you use to create your scatter plot using that synthetic dataset. After that describe specifically how the figure created by that code differs in appearance from the code you want. Perhaps with a concrete example we can run and use to experiment we can offer a suggestion on how to achieve or approach your goal.
Alexandria Will-Cole
Alexandria Will-Cole 2018 年 11 月 14 日
This worked finally! Thank you!

サインインしてコメントする。

その他の回答 (1 件)

Image Analyst
Image Analyst 2018 年 11 月 13 日
Use the caxis() function.

カテゴリ

Help Center および File ExchangeColormaps についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by