Versions Compared

Key

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

...

Programming

JIRA

SUMMARY

DETAILS

ORG-25334

Column Formula Argument Separator Convert failed

We use ; as function argument separator in G Origin in G OS where comma (,) is used as decimal separator, or in E Origin in E OS, but seperator is set to 1.000,0 on Numeric Format tab in Preferences: Options dialog.

If user types , as argument separator, Origin will convert it to ; but it failed in some Labtalk functions. It also failed in Python or Origin C.

E.g. in Set Column Values or F(x)

  • enter text(value(Dec2bin(A)), "#8"), it turned into text(value(Dec2bin(A)). "#8"). It should be turned into text(value(Dec2bin(A)); "#8")

  • Define some python function and then call py.group_sum(A,5) as formula. It turned into py.group_sum(A.5). It should be turned into py.group_sum(A;5)

    Image Added