2D plot with z in color and magnify variations near zero

1 回表示 (過去 30 日間)
zhumei sun
zhumei sun 2017 年 10 月 31 日
回答済み: Mary Abbott 2017 年 11 月 3 日
I would like to make the variations near zero more clear. what i get now is
and i would like the colorbar looks like
So more color variations are near zero.

回答 (1 件)

Mary Abbott
Mary Abbott 2017 年 11 月 3 日
Hello,
What you are seeing is probably caused by some outlying values that are much higher and lower than the average value of your data. These outliers widen the range of values the colormap has to represent, so small variations around 0 are hard to see. To see more variations around 0, you can change the range of the colormap using the "caxis" function. If you change the range to be between -0.1 mm and 0.1 mm, values above 0.1 mm will all be clipped to the last color in the colormap, and values below -0.1 mm will be clipped to the first color in the colormap. For more details on this and an example, please refer to the following link:
https://www.mathworks.com/help/matlab/creating_plots/change-mapping-of-data-values-into-the-colormap.html
Also, the example colorbar that you want is using the "jet" colormap. You can change the plot to this colormap with the following command:
>> colormap jet

カテゴリ

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