- Fixed Scaling:
scale = Scalar*color_scale
offset= start_color + color_scale * (1+Offset/50)
- Maximum Scaling:
scale = Scalar*color_scale/max(abs(Samples[*]))
offset= start_color + color_scale * (1+Offset/50)
- Range Scaling:
scale = 2*color_scale/(Range Max-Range Min)
offset= start_color - scale*Range Min
- Rng Historgram Scaling:
max = Scalar percentile fraction of amplitude range
min = (1-Scalar) percentile fraction of amplitude range
scale = Scalar*2*color_scale/(max-min)
offset= start_color - scale*min
- Abs Histogram Scaling:
max = Scalar percentile fraction of absolute amplitude range
scale = color_scale/max
offset= start_color + color_scale*(1+Offset/50)
- MinMax Scaling:
min = min(Samples[*])
max = max(Samples[*])
scale = Scalar*2*color_scale/(max-min)
offset= start_color + color_scale - Scalar*(max+min)/2