In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-06 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/01 Report--
Today, I will talk to you about how to reverse the color of Colorbar in MATLAB but not the scale of Colorbar. Many people may not know much about it. In order to make you understand better, the editor has summarized the following content for you. I hope you can get something according to this article.
First take a look at two uses of the colormap function (from MATLAB Documentation):
Colormap (map) sets the colormap for the current figure to the colormap specified by map.
Example
Colormap (target,map) sets the colormap for the figure, axes, or chart specified by target, instead of for the current figure.
Usage 1:
Colormap (map)
In that case, it sets the same colormap for the current entire figure
Usage 2:
Colormap (target,map)
In this way, it sets the colormap in the specified target to map instead of setting the colormap of the entire current figure to map.
When we have multiple coordinate systems in a window, and we want to set a different colormap for each coordinate system, then we can use this usage 2.
Map can be the following, as mentioned earlier in this post: write your own code to make a good-looking histogram tweet
If you want to reverse the color of the colorbar, you can do this:
Colormap (h3, flipud (jet))
The flipud function flips the array up and down, and here jet is the color in colorbar (n-row, 3-column matrix), so flipud (jet) flips the color of colorbar.
Let's look at an example:
Put two coordinate systems in one figure, put the surface drawn by mesh in the coordinate system and display colorbar. For convenience, we directly use the peaks function of MATLAB to generate the mesh data, and then mesh it. I want to reverse the colorbar color in the second coordinate system, as follows:
You can see that the color of the colorbar is reversed, and the color of the surface in the picture is reversed accordingly.
Note: if you set the YDir property of Colorbar to reverse, you can also reverse the color of colorbar, but the color of the surface in the picture will not be reversed, and the scale of colorbar will be reversed.
The code in the figure above:
Clc
Clear
Close all
[X, y, z] = peaks
H2 = subplot (211)
Mesh (x, y, z, 'CData', z,' Parent', H2)
Colormap (H2, jet)% actually defaults to this, and you don't have to write it.
Shading interp
Colorbar
Title ('does not reverse the color of colorbar')
H3 = subplot (212)
Mesh (x, y, z, 'CData', z,' Parent', h3)
Colormap (h3, flipud (jet))% reverses the color of colorbar
Shading interp
Colorbar
Title ('reversed the color of colorbar')
After reading the above, do you have any further understanding of how to reverse the color of Colorbar but not the scale of Colorbar in MATLAB? If you want to know more knowledge or related content, please follow the industry information channel, thank you for your support.
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.