How to Effectively Use Hierarchical Variant Lookup Tables Using LabVIEW

Tags: LabVIEW

A lookup table is a table of values that may need to be indiscriminately retrieved programmatically, often even determined subjectively by a user’s input. Using an array and brute force linear searching is often the first method that comes to mind for many programmers, but the larger the table is or grows the more inefficient this method quickly becomes. Variant lookup tables can be created using a simple LabVIEW API that utilizes very efficient algorithms for key-value pairs.

A hierarchical variant lookup table goes a step further and establishes tables within tables. This allows a programmer to efficiently organize their tables of key-value pairs.

While variant lookup tables are one of the most effective tools a developer has at their disposal, too often it goes mistakenly forgotten in favor of using arrays. The larger amount of data lookups you’re preforming, however, the more ideal a variant lookup will be.

Variant lookup tables in the average case have a complexity of O(log N) and in the worst case O(N). This nontrivially outperforms using linear searches on arrays which have a O(N) complexity, especially in the case of larger datasets.

So why do variant tables go forgotten in cases they’d increase performance or even simplify code? It’s likely that programmers find the concept of variants a bit more foreign to their array counterparts. Once introduced and utilized by developers, however, the variant lookup table can become a best friend. Variant lookup tables allow for clear hierarchical distinctions using subtables as demonstrated below.

Hierarchical Variant Blog image 2.jpg

An uncommon use case for variant lookup tables, for example, is for control references when running multiple asynchronous VI’s. Take a case where an application has a tab control with multiple pages and subpanels. Often in such applications, references to controls within those subpanels are needed to update information on the main page. There may be many controls and indicators on each subpanel, and so it be ineffective to continuously search an array for the correct control name each time. It be much more effective to use a variant lookup table to pass control references during the initialization of each subpanel VI. Here below a variant lookup table is passed to each asynchronous VI along with a notifier. 

Hierarchical Variant Blog image 3.jpgWhich is then used in each subpanel VI called to notify when the references have been built. Notice a hierarchy is used to group the control references. 

Hierarchical Variant Blog image 4.jpg

For context, the numbers in each following subpanel are being randomly generated.

Hierarchical Variant Blog image 5.jpg 

Once a Variant Lookup table is established, it is easy then, to refer to controls in the main VI using Get Variant Attribute.vi, like so:

Hierarchical Variant Blog image 6.jpg  Remembering to use variant lookup tables, can not only improve the performance of your code, but organize it as well. This makes what can be complex ordeals much simpler.

Hierarchical Variant Blog image 7.png

Since a hierarchy has been established, you can also use the same label names for in your subpanels. Very convenient! Don’t forget to consider inviting your best friend next time you’re developing!

Rebecca Slota

Rebecca Slota

Rebecca is a software engineer with 8 years of experience at Genuen. She primarily designs, develops, and debugs test system software. She specializes in LabVIEW and Python integration, developing hyperautomated test processes, and NI Package Manager software distribution.

About Genuen

Our goal is to improve time to market without compromising product quality or safety standards. With experience in mission-critical applications and regulatory compliance, Genuen creates custom test systems across the product lifecycle, including hardware-in-the-loop (HIL), fluid power test, and electromechanical test. Headquartered near Kansas City, we have offices across the United States and serve clients in aerospace, transportation, national security, and beyond. The company's Quality Management System (QMS) is certified to ISO 9001.