<< colorbar | Graphics functions | colstyle >> |
colormap(map) |
colormap(target ,map) |
cmap = colormap() |
cmap = colormap(target) |
colormap name, 'default' or RGB triplets (matrix).
Target: figure or axes.
Colormap values: RGB triplets (matrix).
colormapallows to view and set the colormap used into a plot.
f = figure()
x = linspace(-1, 1, 1024)' * ones(1, 1024);
y = x';
Z = exp(-(x .^ 2 + y .^ 2) / 0.4);
imagesc(Z);
colormap('summer')
f = figure()
x = linspace(-1, 1, 1024)' * ones(1, 1024);
y = x';
Z = exp(-(x .^ 2 + y .^ 2) / 0.4);
imagesc(Z);
colormap('gray')
f = figure()
x = linspace(-1, 1, 1024)' * ones(1, 1024);
y = x';
Z = exp(-(x .^ 2 + y .^ 2) / 0.4);
imagesc(Z);
map = [0 0 0.3;
0 0 0.4;
0 0 0.5;
0 0 0.6;
0 0 0.8;
0 0 1.0];
colormap(map)
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET