Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-25792

Support listing StringArray on LabTalk Variables and Functions dialog

Show StringArray variable in the LabTalk Variables and Functions dialog

In Script Window, select menu Tools: Variables to open the LabTalk Variables and Functions dialog. A new checkbox “StringArray” is added, select it can show available StringArray variable in current project.

ORG-26063

LabTalk script to set Colormap Transparency

Add a new command to set colormap transparency

Syntax: layer.cmap.transparency

ORG-25853

LabTalk countif function support simpler condition

Improve countif etc. function to support simpler condition

In previous builds, user need to provider condition with input range like countif(col(A), "col(A)>10"), now it can be simpler, just write as countif(col(A), ">10"). It’s also supported for other if function, includes sumif, averageif, maxifs, minifs.

Code Block
countif(col(A), "boston")=;
countif(A, 2)=;
countif(A, "!=2")=;

Python

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-25929

Upgrade embedded Python to latest version 3.11 for Origin 2023b

Upgrade embedded python to latest version 3.11.

Upgrade embedded python to latest version 3.11 which can not be used on Windows 7 or earlier. So when try to use embedded python in Windows 7 or earlier, will show prompt message.

...