rgbplot(cmap)
| Parameter | Description |
|---|---|
| cmap | Colormap: three-column matrix of RGB triplets . |
rgbplot(cmap) plots the R (red), G (green), and B (blue) intensities of the specified cmap colormap.
f = figure();
colormap = [0.2 0.1 0.5;
0.1 0.5 0.8;
0.2 0.7 0.6;
0.8 0.7 0.3;
0.9 1 0];
rgbplot(colormap);
| Version | Description |
|---|---|
| 1.0.0 | initial version |