From 664997eec820cb3ac000e1f9d2ec05f0c2477602 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= Date: Thu, 27 Jun 2013 10:38:49 +0200 Subject: [PATCH] Removed leading wihite spaces in variable names. --- matlab/@dynSeries/save.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/matlab/@dynSeries/save.m b/matlab/@dynSeries/save.m index f18d8c0f2..d417897e7 100644 --- a/matlab/@dynSeries/save.m +++ b/matlab/@dynSeries/save.m @@ -82,7 +82,7 @@ switch format else fid = fopen([basename, '.csv'],'w'); end - fprintf(fid,', %s', A.name{:}); + fprintf(fid,',%s', A.name{:}); fprintf(fid,'\n'); for t=1:A.nobs date = A.init+(t-1);