How to associate a colormap to fixed z range in Sgrayplot()

I would need to be able to use Sgrayplot() in such a way that the color map represents a fixed range of z values, instead of accommodating to the particular extremes of z. As it works by default, the full color map is used regardless of the z range.

For instance, I have two functions, z = f(x,y) and z = g(x,y), the first one ranges from
0 to 1, the second one, from 0.5 to 0.6. Assuming that I use jet(100) as the color map, I would like to see the full range of colors in the case of f (i.e., indices between 1 and 100), but only the colors between indices 50 and 60 in the case of g. The default behavior is that both plots use the full color range, so the visual comparison is somewhat deceptive as to the real range of each function.

I can imagine several workarounds, but I wonder whether there is a direct or natural way of doing this.

Thanks,

Federico Miyara

Hello,

You can use the zminmax and colminmax arguments of Sgrayplot(), they have been tailored for this purpose.

S.

Thank you!

The presence of arguments like zminmax=[-0.5 0.5] or colout=[0 0] is somewhat baffling since “=” is the assignment sign, I wouldn’t expect it within an argument list. I would rather expect expressions.

Other functions use pairs such as “zminmax”, [-0.5 0.5] instead

Regards,

Federico Miyara

Named arguments are quite common in Scilab and even Matlab has started to use them. From a developper point of view they are much easier to parse than name/value pairs.

S.

Thanks again!

Federico Miyara