Nakul Jindal created SYSTEMML-1626: -------------------------------------- Summary: x = solve(A,b) should report an error when it is an underdetermined system (in CP mode) Key: SYSTEMML-1626 URL: https://issues.apache.org/jira/browse/SYSTEMML-1626 Project: SystemML Issue Type: Bug Components: Runtime Affects Versions: SystemML 0.14 Reporter: Nakul Jindal
{code} m = 16 n = 8 A = rand(rows=m, cols=n) b = rand(rows=m, cols=1) x = solve(A, b) print(toString(x)) {code} Should print an error, instead it prints a 8x1 vector. -- This message was sent by Atlassian JIRA (v6.3.15#6346)