Versions Compared

Key

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

...

JIRA

SUMMARY

DESCRIPTOIN

DETAILS

ORG-10764

Improvement for binary data in Import Wizard

Header variables should support customize names for binary data in Import Wizard

Define variable name for binary file.jpg

ORG-29757

Improvements When Changing Data Source of Data Connector

Show Options dialog checkbox is added in Data Source File Path dialog

In older version, on a sheet with data connector, when clicking the connector icon and choose Data Source… to change data file, after clicking OK, new data wasn’t imported directly. The subsequence Import Options dialog always showed for user to confirm the settings but most of the time user just needed to click OK without any change.

In Origin 2025, Show Options dialog checkbox is added and by default unchecked so data can be imported directly after clicking OK.

Analysis

General

JIRA

SUMMARY

DESCRIPTION

DETAILS

Gadgets

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-30375

Vertical Cursor lists Book Long Name

In Vertical Cursor tool, support Book Long name

ORG-30375.pngImage Added

Programming

Python

JIRA

SUMMARY

DESCRIPTOIN

DETAILS

ORG-30144

Python supports setting parameter bounds in NLFit

Added following function to set parameter bounds in NLFit.

Code Block
def set_lbound(self, p, ctrl='>', val=None)
def set_ubound(self, p, ctrl='<', val=None)

Example:

Code Block
import originpro as op
wks = op.new_sheet()
fn=op.path('e') + r'Samples\Curve Fitting\Gaussian.dat'
wks.from_file(fn, False)
model2 = op.NLFit('Gauss')
model2.set_data(wks, 0, 1)
model2.set_lbound('y0','>','6')
model2.set_ubound('A','<','800')
model2.fit()

...