jet - Jet colormap array - MATLAB (original) (raw)
Main Content
Syntax
Description
c = jet
returns the jet colormap as a three-column array with the same number of rows as the colormap for the current figure (gcf). If no figure exists, then the number of rows is equal to the default length of 256. Each row in the array contains the red, green, and blue intensities for a specific color. The intensities are in the range [0,1], and the color scheme looks like this image.
For smoother transitions between colors, use the turbo colormap. For more information, see Alternative Functionality.
c = jet([m](#bvisv5k-1%5Fsep%5Fshared-m))
returns the colormap with m
colors.
Examples
Plot a surface and assign the jet colormap.
surf(peaks); colormap('jet');
Get the jet colormap array and reverse the order. Then apply the modified colormap to the surface.
c = jet; c = flipud(c); colormap(c);
Get a downsampled version of the jet colormap containing only ten colors. Then display the contours of the peaks function by applying the colormap and interpolated shading.
c = jet(10); surf(peaks); colormap(c); shading interp;
Input Arguments
Number of colors, specified as a nonnegative integer. The default value ofm
is the number of colors in the current figure's colormap. If no figure exists, the default value is 256
.
Data Types: single
| double
| int8
| int16
| int32
| int64
| uint8
| uint16
| uint32
| uint64
Alternative Functionality
Use the turbo
Colormap for Smoother Transitions
The turbo colormap has a color scheme that is similar to the jet
colormap, but the transitions between colors are more perceptually uniform.
These colorbars show the difference between the jet
andturbo
colormaps.
jet | ![]() |
---|---|
turbo | ![]() |
Version History
Introduced before R2006a
Starting in R2019b, colormaps have 256 colors by default.
In R2019a and previous releases, the default size is 64. If you have code that depends on a colormap having 64 colors, specify the number of colors when you set the colormap for the figure, axes, or chart. For example,colormap(jet(64))
sets the figure's colormap to the 64-colorjet
colormap.
Alternatively, you can change the default colormap for all figures within your MATLABĀ® session:
set(groot,'defaultFigureColormap',jet(64))