Tables
Some parameters are specified as tables in the form of multidimensional arrays. Typically, these are so-called lookup tables in which two dimensions are used:
- X values (array index 0)
- Y-values (array index 1)
Example: [[X1, Y1], [X2, Y2], [X3, Y3], ...]
The X values must be specified in strictly ascending or strictly descending order. If this order is violated for consecutive X values, this is considered to be the end of the table.
The corresponding Y values are determined using the X values. If the query value lies between two table points, linear interpolation is performed. Values outside the X value range are extrapolated linearly if required.