无论如何我们可以在scilab中反转色彩图吗?当我使用hotcolormap时,颜色图从红色到黄色。红色表示较小的值,黄色表示较高的值。我想制作一个黄色表示较小值的图表,红色表示较高值。
答案 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行进行任何其他更改