I'm working with IDL and I have an array like:
intensity[360,13]
containing entries whose values range from 0 to 60. The point is that I want to plot it in with a scale ranging from 0 to 100. However, if I do:
im = IMAGE(intensity, TITLE='Intensity', DIMENSIONS=[1400,400])
im = COLORBAR(TARGET=im)
im.Save, 'intensity.png'
it fixes an arbitrary scale from the minimum to the maximum value of the intensity value. How could I force it? I tried putting:
im = COLORBAR(TARGET=im, RANGE=[0,100])
but it just sets the colorbar values, without changing colors in the image. Is it possible to normalize the scale between 0 and 100, or should I act in a different way? Sorry I'm not used to IDL and I'm a little bit in a hurry with that :) Thank you very much!