RGB格式图片,红绿蓝三个通道都有0-255的明度值:
TVSCL命令将二维数组(不知道可否是其他维度)中的数值按比例换算成明度(0-255),数组中元素的最低值对应明度0,最高值对应255,其他元素线性对应。
image=dist(200)
tvscl,image
输出:
【绘图原理英文原文】
The TVSCL procedure scales(按比例换算) the intensity values(指像素亮度,也就是0-255) of Image into the range of the Direct Graphics image display device(直接图形法的显示设备) and outputs the data to the image display at the specified location.
【线性对应公式】
The array is scaled so the minimum data value becomes 0 and the maximum value becomes the maximum number of available colors (held in the system variable !D.TABLE_SIZE) as follows:
其中,系统变量!D.TABLE_SIZE-1就是255