Versions Compared

Key

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

Analysis

Code Block
var xs = from a in Enumerable.Range(0, 9)
         where a % 2 == 0
         select a;
foreach (var x in xs)
{
  Console.WriteLine(x);
}

General

ID

JIRA

SUMMARY

DETAILS

1348

ORG-18971

Analysis broken if data size of input X and Y are differentdifferentnlmljljjhgfhfdgjhfgj

Issue existed since Origin 2019b.

...

ID

JIRA

SUMMARY

DETAILS

1312

ORG-21188

Fail to set text tick label correctly for multi-panel column plot

If using data which is smaller than 16(controled by @DRX) to plot multi-panel column plot, fail to set the text tick label correctly.

1336

ORG-21546

Fail to show bar/column under zero for bar chart plot

Fix the bug that Statistical bars can not start from 0.

Image Modified

General

ID

JIRA

SUMMARY

DETAILS

1327

ORG-21738

Fail to use A to zoom in/out matrix in image mode

1.new matrix in image mode
2.press A+ mouse wheel/"+" or "-" to zoom in/out
==> fail

Fixed in Origin2020b.

...

ID

JIRA

SUMMARY

DETAILS

1364

ORG-21381

Support nested vectorize function operation

The followed failed prior to 2020b:

Code Block
 void test_max()
 {
 	vector vX = { 1, 3, -2, 5, 4 };
 	
 	double d = max(abs( vX ));

        printf("d=%f", d);
 }

Labtalk

ID

JIRA

SUMMARY

DETAILS

1362

ORG-21702

Value() function fails to handle thousands separator properly.

Value() function fails to handle thousands separator properly.

Previously, Value("1,234") returned --. It now returns 1234.