Some LabTalk function Improvements


Version: 2020b

Type: Features

Category: Programming

Subcategory: Labtalk

Jira: ORG-21236


  • Set Column Values dialog: Under Function: Lookup & Reference and Function: Logical submenus, adding [$] functions at the end of those functions that return string

  • Some lookup() function bug fixes, including system variable to disable numeric lookup @LKN=0

  • Now all LabTalk function is improved to support using partial range as input.
    Example,

newbook;
col(A) = {1, 3, 2, 5, 1, 7, 4, 10};
range rr = col(A)[3:6];
col(B) = sort(rr);