在scilab中反转colormap

时间:2018-01-26 04:30:59

标签: scilab colormap

无论如何我们可以在scilab中反转色彩图吗?当我使用hotcolormap时,颜色图从红色到黄色。红色表示较小的值,黄色表示较高的值。我想制作一个黄色表示较小值的图表,红色表示较高值。

1 个答案:

答案 0 :(得分:0)

很容易:

cmap=hotcolormap(128);// a 128 by 3 array
//invert the cmap rows and set the current figure colormap
set(gcf(),"color_map",cmap($:-1:1))

假设cmap元素值介于0和1之间,可以对cmap行进行任何其他更改