Lookup Table 2D Function
Owning Palette: Lookup Tables Functions
Installed With: Control Design and Simulation Module
Returns the z value, located in a two-dimensional table, that corresponds to x and y values you specify.
Dialog Box Options |
Block Diagram Inputs |
Block Diagram Outputs |
Place on the block diagram | Find on the Functions palette |
Dialog Box Options
Parameter | Description |
---|---|
Polymorphic instance | Specifies whether this function is Scalar or Vector. The default value is Scalar. |
Parameters | Lists all the parameters associated with this function. Select a parameter from this list to configure the parameter. When you select a parameter, the parameter and its associated Parameter source control appear in the Parameter Information section of the configuration dialog box. |
Preview | Displays a graphical preview, if available, of the function output or configuration. |
Parameter Information | Contains the parameters you can configure for this function. You must select a parameter from the Parameters list to make that parameter and its associated Parameter source control visible in the Parameter Information section of the configuration dialog box. |
Parameter source | Specifies whether you configure this parameter using the Configuration Dialog Box or a Terminal on the simulation diagram. The default value is Configuration Dialog Box. If you select Terminal, LabVIEW displays an input for that parameter on the simulation diagram, and you can wire values to that input to configure this function programmatically. If you select Configuration Dialog Box, LabVIEW removes that input from the simulation diagram. You then must set the value for this parameter inside the configuration dialog box. |
Method | Specifies the interpolation method the lookup table uses. You can choose from the following options:
|
LUT X | Specifies the set of x values that correspond to the row index of data points in the LUT Data table. The elements of LUT X must be monotonically increasing or equal such that LUT X[i] ≥ LUT X[j] if i > j. |
LUT Y | Specifies the set of y values that correspond to the column index of data points in the LUT Data table. The elements of LUT Y must be monotonically increasing or equal such that LUT Y[i] ≥ LUT Y[j] if i > j. |
LUT Data | Specifies a two-dimensional table of x and y data points that correspond to the values you specify for the LUT X and LUT Y parameters. |
Block Diagram Inputs
Parameter | Description |
---|---|
Method | Specifies the interpolation method the lookup table uses. You can choose from the following options:
|
LUT X | Specifies the set of x values that correspond to the row index of data points in the LUT Data table. The elements of LUT X must be monotonically increasing or equal such that LUT X[i] ≥ LUT X[j] if i > j. |
LUT Y | Specifies the set of y values that correspond to the column index of data points in the LUT Data table. The elements of LUT Y must be monotonically increasing or equal such that LUT Y[i] ≥ LUT Y[j] if i > j. |
LUT Data | Specifies a two-dimensional table of x and y data points that correspond to the values you specify for the LUT X and LUT Y parameters. |
X Val | Specifies the x value to locate in the LUT Data table. |
Y Val | Specifies the y value to locate in the LUT Data table. |
Block Diagram Outputs
Parameter | Description |
---|---|
Result | Returns the z value in the LUT Data table that corresponds to the values you specify for the X Val and Y Val parameters. If a direct match does not exist, this function operates according to the value you specify for the Method parameter. |
Lookup Table 2D Details
Feedthrough Behavior
All input/output pairs of this function have direct feedthrough behavior.
Example
Refer to the SimEx LUT 2D VI in the labview\examples\Control and Simulation\Simulation\LUT directory for an example of using the Lookup Table 2D VI.