diff yetilab/matrix/test/test_matrix.yeti @ 280:7f000ae124db

Make convolver work. Ugly though
author Chris Cannam
date Tue, 28 May 2013 20:41:11 +0100
parents 678477bf617c
children
line wrap: on
line diff
--- a/yetilab/matrix/test/test_matrix.yeti	Mon May 27 23:37:57 2013 +0100
+++ b/yetilab/matrix/test/test_matrix.yeti	Tue May 28 20:41:11 2013 +0100
@@ -397,6 +397,15 @@
        (newMatrix (ColumnMajor ()) [[1,4],[0,5],[3,6]])
 ),
 
+"concatEmpty-horiz-\(name)": \(
+    compareMatrices
+       (mat.concat (Horizontal ()) 
+          [(newMatrix (ColumnMajor ()) [[]]),
+           (newMatrix (RowMajor ()) [[]]),
+           (mat.zeroSizeMatrix ())])
+       (mat.zeroSizeMatrix ());
+),
+
 "sparseConcat-horiz-\(name)": \(
     s = mat.concat (Horizontal ()) 
           [mat.toSparse (newMatrix (ColumnMajor ()) [[1,4],[0,5]]),