From 3c97c33755e47399d9ebf53bc13784fc0bf05265 Mon Sep 17 00:00:00 2001 From: dellaert Date: Mon, 1 Dec 2014 11:25:16 +0100 Subject: [PATCH] Fixed test --- matlab/gtsam_tests/testValues.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/gtsam_tests/testValues.m b/matlab/gtsam_tests/testValues.m index ce2ae9d7e..fe2cd30fe 100644 --- a/matlab/gtsam_tests/testValues.m +++ b/matlab/gtsam_tests/testValues.m @@ -35,6 +35,6 @@ EXPECT('at',values.atConstantBias(10).equals(imuBias.ConstantBias,tol)); % special cases for Vector and Matrix: actualVector = values.atVector(11); -EQUALITY('at',[1 2;3 4],actualVector,tol); +EQUALITY('at',[1;2;3],actualVector,tol); actualMatrix = values.atMatrix(12); EQUALITY('at',[1 2;3 4],actualMatrix,tol);