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

1 visualización (últimos 30 días)
zhumei sun
zhumei sun el 31 de Oct. de 2017
Respondida: Mary Abbott el 3 de Nov. de 2017
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.

Respuestas (1)

Mary Abbott
Mary Abbott el 3 de Nov. de 2017
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

Categorías

Más información sobre Colormaps en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by