From e641cdd45594d33ab68f5f4dade6948e6205aba4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= Date: Fri, 6 Sep 2013 16:24:15 +0200 Subject: [PATCH] Fixed unitary tests. If not specified, the name a variable in a dynSeries object is not '--NaN--' but 'Variable_xx' where x is the number of the variable. --- matlab/@dynSeries/set_names.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/matlab/@dynSeries/set_names.m b/matlab/@dynSeries/set_names.m index 3d0aff1c8..00e4f071e 100644 --- a/matlab/@dynSeries/set_names.m +++ b/matlab/@dynSeries/set_names.m @@ -65,7 +65,7 @@ end %$ A = rand(10,3); %$ %$ % Define names -%$ A_name = {'A1';'--NA--';'A3'}; +%$ A_name = {'A1';'Variable_2';'A3'}; %$ %$ t = zeros(4,1); %$ @@ -91,7 +91,7 @@ end %$ A = rand(10,3); %$ %$ % Define names -%$ A_name = {'A1';'--NA--';'A3'}; +%$ A_name = {'A1';'Variable_2';'A3'}; %$ %$ t = zeros(4,1); %$