Skip to content
Snippets Groups Projects
Commit 58b6a767 authored by Stéphane Adjemian's avatar Stéphane Adjemian
Browse files

Fixed bug. The cell of strings varlist had wrong dimension (must be a column)...

Fixed bug. The cell of strings varlist had wrong dimension (must be a column) if the code is executed with matlab.
parent fa202a87
Branches
Tags
No related merge requests found
...@@ -119,6 +119,7 @@ if ~exist('OCTAVE_VERSION') ...@@ -119,6 +119,7 @@ if ~exist('OCTAVE_VERSION')
error('load_csv_file_data:: Shouldn''t arrive here'); error('load_csv_file_data:: Shouldn''t arrive here');
end end
freq = init.freq; freq = init.freq;
varlist = transpose(varlist);
return return
end end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment