Origin 2027 Features

Origin 2027 Features

Graphing

New Graph Types

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

 

 

 

 

 

 

 

 

General

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-32742

Digits in Report should also work for digits on Graph (embedded report/results)

The embedded graphs will have their table objects and text objects respect the report digits setting.

The system variable

@dggrob=

determines whether the above hierarchical sheet property will be set when creating a new report (i.e. not on Change Parameters or Recalculate). It is on by default.

For existing reports (i.e. those created before this item was done), you must set the property

wks.HIERGRAPHRPTDIGITS=1

to see the effect.

ORG-33728

Annotation object supports auto color

When annotation on plot, choose color as Auto, annotation label color will follow plot’s color

ORG-33728.png

Label and Annotation

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-32629

Distance Annotation Attach to Right Y

We can calculate the distance base on scale of right Y.

In Programming tab of object properties dialog, when Attach to is Layer and Scale, if the attached layer select independent axis rescale, show following control after Attach to

Scale → Left Y

Right Y

Show Attach to Right Axis/Left Axis toggle button in 1st row before edit points.

 

 

 

 

Graph Customization

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

 

 

 

 

 

 

 

 

Analysis

General

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-33826

EC50 CI value in NLFit is different from Prism 11

Support Use Log to Calculate CI for each derived parameter in Fitting Function Builder dialog. Default is uncheck and only works for Asymptotic-Symmetric based method.

Can also set TransformCI = 0,1,1,1,1,1 in Fitting Function Organizer to work

ORG-33826_S.png

Statistics

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-33452

Add Normal Probability Plot for 1/2/Paired Sample t-test

Normal Probability plot output is supported in 1/2/Paired Sample t-test.

Open t-test tool and go to Plots tab, check the Probability Plot check box to output.

For Paired Sample t-Test tool

  1. If Plot for Difference checkbox is checked, Normal Probability Plot of Differences will be output.

  2. Otherwise, Noraml Probability Plot for each data will be output.

ORG-33853

 

One-Sample t-Test Support Multiple Summarized Data

One-Sample t-Test support spaced separated number or column as input summarized data.

For One-Sample t-Test, single or multple sample data are supported:

OneSampleT_Summarized.png

 

ORG-33860

Two-Sample t-Test Support Summarized Data from Column

Two-Sample t-Test support spaced separated number or column as input summarized data.

For Two-Sample t-Test, only 2 sample data are supported:

2SampleT_Summarized.png

APPS-1665

Output VIF in Parameters table for Logistic Regression

Support VIF for Binary Logistic Regression, can check it in Quantities tab

APPS-1665.png

ORG-33544

Add Adjusted Blaker’s Exact Test for One Sample Proportion Test

Support Adjust Blaker’s Exact Test when alternative hypothesis is Not Equal.

  1. Open One-Sample Proportion Test tool.

  2. Go to Proportion Test tab → Test Method branch.

  3. check the Adjust Blaker’s Exact Test checkbox.

ORG-34000

Power and Sample Size Support Multiple Input Values

Support multiple inputs for (PSS) t test and (PSS) One-way ANOVA tool.

PSStTest_MultiInput.png

ORG-33821

Support Welch ANOVA in Built-in One-Way ANOVA

Games-Howell Mean Comparison Method for Welch ANOVA is supported in build-in One-Way ANOVA.

  1. Open the build-in One-way ANOVA tool.

  2. In the Input tab, uncheck Equal Variance Assumed checkbox.

  3. Go to Means Comparison tab and only Games-Howell is available.

ORG-33946

Support Test for SD for One-Sample Test for Variance

In Hypothesis Test: One-Sampel Variance Test, test for Standard Deviation is supported

  1. Open build-in Hypothesis Test: One-Sampel Variance Test tool.

  2. Go to Test tab and Test for Standard Deviation is supported.

ORG-33945

Support Bonett Test for One-Sample Test for Variance

In Hypothesis Test: One-Sampel Variance Test, Bonett Test method is supported.

  1. Open build-in Hypothesis Test: One-Sampel Variance Test tool.

  2. Go to Test tab and Test Medthod branch, Bonett is supported.

ORG-33938

Conclusion footnote of Normality Test needs to be more rigorous

Imporve the normality test conlusion footnote.

Imporve the normality test conlusion footnote for the following tools:

  1. Normality Test

  2. Hypothesis Test: One/Two/Paired Sample t-Test

Import

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-33864

XF support import certain old version Minitab file MPJ

Improve impMNTB X-Function to support importing Minitab files saved in Minitab 14-18.

  1. Use LT script “impMNTB -dm” to import.

  2. Select Data: Import From File: Add/Remove File Types… and pick Minitab menu to show.

ORG-28165

Selecting multiple sheets to duplicate

Support selecting multiple variables in Data Navigator for following connectors.

  1. Origin Connector

  2. MATLAB Connector

  3. HDF Connector

  4. NetCDF Connector

Set @DNM=0 to turn it off.

ORG-33518

Update to newer HDF5 version 2.1.1 and Matlab matio version 1.5.30

Update HDF5 dll version to 2.1.1 and Matlab matio version to 1.5.30 to support importing files from higher version.

Following tools should be affected.

  1. MATLAB Connector

  2. HDF Connector

  3. impMATLAB

  4. impHDF5

Export

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-34082

Export PE Folder to Excel Files

There is menu Export to Excel File when we right click the folder in Project Explorer panel

It will export all the workbooks in that folder. The exported excel will use book’s long name as file name and export the whole book.

Programming

Python

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-33686

Upgrade embedded Python to latest version 3.14 for Origin 2027

The embedded Python in Origin 2027 is upgraded to Python 3.14.6.

Python Console.png

 

Origin C

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-33858

__super to access base class in OC

Support __super keyword in OC to access base class.

Example:

class A { public: void fun(){ out_str("A");} }; class B :public A { public: void fun() { __super::fun(); out_str("B"); } }; void main() { B b; b.fun(); }

ORG-33846

static_assert in OC

Support static_assert in OC compiler

static_assert( bool-constexpr , string-message ) static_assert( bool-constexpr )

Example:

#define MY_CONST 4 int test_int() { return 4; } void test() { static_assert ( sizeof(int) == 4); // pass, no message static_assert ( sizeof(int) == 4 && 2 > 1, "pass 1"); // pass static_assert ( sizeof(int) != 4, "fail 1"); // should fail static_assert (MY_CONST != 4, "fail 2"); // should fail static_assert ( test_int() == 4); // should not compile, because the expression is not compile-time constant }

Code Builder

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-33780

Improve OC debug speed when Code Builder is open

Improve the speed of compiling/running oc code and opening xf builder for xf with many variables.

can set @ESCB=1 and ed.BreakpointSpeed=0 to turn off this improvement.

Miscellaneous

Ease of Use

JIRA

SUMMARY

DESCRIPTION

DETAILS

JIRA

SUMMARY

DESCRIPTION

DETAILS

ORG-26101

Sticky Notes

Add Sticky Notes to Window or Sheet

Post-it like note for jotting down quick reminder and ideas.

  • Hotkey Ctrl+Shift+7 and Add Note icon on child window title bar to add sticky note.

  • Different color list for Light and Dark modes and set default color

  • Change font size and set it as default, apply font size to all other sticky notes.

  • Minimize Notes to corner.

  • For workbook, notes can be attached to sheet (default) or Book. Sheet note will only show on corresponding sheet, while book note shows no matter which sheet is active.

  • Ctrl+F7 to show/hide sticky notes

  • LabTalk command to delete sticky note

    • del -sn; //del stick notes of entire project

    • del -sn 1,2,3 for

      • 1 current folder and sub-folders

      • 2 current folder

      • 3 active window (or book and all sheets)

  •  

  •  

ORG-33838

Compact Mode

Less toolbar buttons and rearranged

During installation, if Default GUI Mode is chosen, Preferences: GUI Mode: Compact will be available with less toolbars and different arrangement of docked windows.

Such as only 2D graph toolbars show with less categories. Graph rescale, zoom, pan, … together on top, Project Explorer docked on right side, etc.

ORG-32963

Column Browser Support Path as One Column

Support Path to show the column in which folder

Open Column Browser and check the Path column in the middle panel.

ORG-31829

 

Show image file type on status bar when clicking on a cell

When click on a cell with embedded SVG, will show “Embedded: SVG Image” on status bar.

For other types image, only show as “Image”, not show the image type.

ORG-30315

SHIFT select a tool to make it Sticky like in Prism

Support Hold Shift and click toolbar to add a series of objects

Support following tool

  • Text Tool

  • Distance Annotation, Angle Annoatation, Slope Annotation

  • All arrow tools

  • All line tools

  • All area shapes

  • All bracket objects