functionscalarToColor
Map a scalar to a color using a color map
Extends from Modelica.Icons.Function (Icon for functions).
Information
Syntax
//Real T, T_min, T_max, colorMap[:,3]; Colors.scalarToColor(T, T_min, T_max, colorMap);
Description
This function returns an rgb color Real[3] that corresponds to the value of "T". The color is selected from the colorMap by interpolation so that "T_min" corresponds to "colorMap[1,:]" and "T_max" corresponds to "colorMap[end,:]".
See also
ColorMaps, colorMapToSvg, PipeWithScalarField.Inputs
| Type | Name | Default | Description |
|---|---|---|---|
| Real | T | Scalar value | |
| Real | T_min | T <= T_min is mapped to colorMap[1,:] | |
| Real | T_max | T >= T_max is mapped to colorMap[end,:] | |
| Real[:,3] | colorMap | Color map |
Outputs
| Type | Name | Default | Description |
|---|---|---|---|
| Real[3] | color | Color of scalar value T |