필터 지우기
필터 지우기

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 CenterFile Exchange에서 Colormaps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by