Enumeration for the type of extrapolation that is used when reading data from a table. The possible values are:
Enumeration | Description |
---|---|
HoldLastPoint |
Hold the first or last point outside of the table scope. |
LastTwoPoints |
Extrapolate by using the derivative at the first or last table points outside of the table scope. |
Periodic |
Repeat the table scope periodically. |
type Extrapolation = enumeration(HoldLastPoint "Hold the first/last table point outside of the table scope", LastTwoPoints "Extrapolate by using the derivative at the first/last table points outside of the table scope", Periodic "Repeat the table scope periodically");