From 58b6a7676be0e634cfd6972e30e6ad3b7a8e43b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Charybdis=29?= Date: Mon, 17 Jun 2013 14:29:07 +0200 Subject: [PATCH] Fixed bug. The cell of strings varlist had wrong dimension (must be a column) if the code is executed with matlab. --- matlab/load_csv_file_data.m | 1 + 1 file changed, 1 insertion(+) diff --git a/matlab/load_csv_file_data.m b/matlab/load_csv_file_data.m index 84e7f6a6f..21ff83267 100644 --- a/matlab/load_csv_file_data.m +++ b/matlab/load_csv_file_data.m @@ -119,6 +119,7 @@ if ~exist('OCTAVE_VERSION') error('load_csv_file_data:: Shouldn''t arrive here'); end freq = init.freq; + varlist = transpose(varlist); return end