Matthias Boehm created SYSTEMML-2240:
----------------------------------------
Summary: Incorrect result for min/max over matrices with NaNs
Key: SYSTEMML-2240
URL: https://issues.apache.org/jira/browse/SYSTEMML-2240
Project: SystemML
Issue Type: Bug
Reporter: Matthias Boehm
The following script should return {{NaN NaN NaN}} but currently returns {{6.0
10.0 NaN}}.
{code}
X = seq(1,10);
X[5,1] = NaN;
print(min(X)+" "+max(X)+" "+sum(X));
{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)