Deron Eriksson created SYSTEMML-1258:
----------------------------------------

             Summary: cbind appends strings
                 Key: SYSTEMML-1258
                 URL: https://issues.apache.org/jira/browse/SYSTEMML-1258
             Project: SystemML
          Issue Type: Bug
          Components: Parser, Runtime
            Reporter: Deron Eriksson


The append() method is documented to allow (1) cbind() (column append) 
functionality for matrices and (2) allows strings to be appended to other 
strings.

However, cbind() also seems to allow strings to be appended to other strings. 
Since cbind() is a matrix function, this seems incorrect.

{code}
makes = "makes";
makes_sense = append(makes, "sense");
print(makes_sense);

doesnt_make = "doesn't make";
doesnt_make_sense = cbind(doesnt_make, "sense");
print(doesnt_make_sense);
{code}

output:
{code}
makes
sense
doesn't make
sense
{code}




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)

Reply via email to