Versions Compared

Key

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

...

JIRA

SUMMARY

DETAILS

ORG-25874

Switch to other application when open Axis dialog from mini toolbar

  1. New a graph window, open Windows explorer

  2. Click the graph axis to show mini toolbar, click Axis Scale button

  3. In Axis Scale dialog, click More button

==> Switch to Windows explorer and then the axis dialog open

Fixed in Origin 2023b

Programming

LabTalk

JIRA

SUMMARY

DETAILS

Origin C

JIRA

SUMMARY

DETAILS

Python

JIRA

SUMMARY

DETAILS

ORG-23387

XOP in a loop

When use Python function to do Linear Fit in a loop, it fails. Create XYY data in active worksheet with random numbers then run below code to see the failure.

Code Block
import originpro as op
wks_all = op.find_sheet()
for i in range(wks_all.cols):
    if i==0:
        continue
    lr = op.LinearFit()
    print(f'col({i+1}):')
    lr.set_data(wks_all, 0, i)
    rr = lr.result()
    b = rr['Parameters']['Slope']['Value']
    b_err = rr['Parameters']['Slope']['Error']
    print(f'slope={b}+-{b_err}')

Fixed in Origin2023b