More efficient way to assign values on label Rows


Version: 2025b

Type: Features

Category: Programming

Subcategory: LabTalk

Jira: ORG-30110


How to assign values to a user-defined parameter row.

newbook;
//C, L, U are label row characters
range -v rvA=[C]:[C], rvB=[L]:[L], rvC=[U]:[U];
rvA[1]=20;
rvA[2]$="hello";
rvB=30;
rvC="world";