Repository: incubator-systemml
Updated Branches:
  refs/heads/master d58c78750 -> 1385cf1ca


http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/1385cf1c/src/test/scripts/functions/transform/TransformEncodeDecode.dml
----------------------------------------------------------------------
diff --git a/src/test/scripts/functions/transform/TransformEncodeDecode.dml 
b/src/test/scripts/functions/transform/TransformEncodeDecode.dml
index b2b9e2a..6290ac3 100644
--- a/src/test/scripts/functions/transform/TransformEncodeDecode.dml
+++ b/src/test/scripts/functions/transform/TransformEncodeDecode.dml
@@ -25,7 +25,7 @@ jspec = read($5, data_type="scalar", value_type="string");
 [X, M] = transformencode(target=F1, spec=jspec);
 
 A = aggregate(target=X[,1], groups=X[,2], fn="count");
-Ag = append(A, seq(1,nrow(A)));
+Ag = cbind(A, seq(1,nrow(A)));
 
 F2 = transformdecode(target=Ag, spec=jspec, meta=M);
 

http://git-wip-us.apache.org/repos/asf/incubator-systemml/blob/1385cf1c/src/test/scripts/functions/unary/matrix/QRsolve.dml
----------------------------------------------------------------------
diff --git a/src/test/scripts/functions/unary/matrix/QRsolve.dml 
b/src/test/scripts/functions/unary/matrix/QRsolve.dml
index c418901..6cd7f26 100644
--- a/src/test/scripts/functions/unary/matrix/QRsolve.dml
+++ b/src/test/scripts/functions/unary/matrix/QRsolve.dml
@@ -30,7 +30,7 @@ b = read($2);
 m = nrow(A);
 n = ncol(A);
 
-Ab = append(A,b);
+Ab = cbind(A,b);
 
 [Hb,Rb] = qr(Ab);
 

Reply via email to