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

Remove double quotes in list of variables.

parent fdef5e75
Branches
No related tags found
No related merge requests found
......@@ -121,6 +121,8 @@ if isoctave
end
varlist = strtrim(varlist);
linea = linea+1;
% Remove double quotes if any
varlist = strrep(varlist,'"','');
end
% Get following line (number 1 or 2 depending on withnames flag)
......@@ -192,6 +194,9 @@ end
varlist = transpose(varlist);
% Remove double quotes if any
varlist = strrep(varlist,'"','');
%@test:1
%$ % Download csv file with data.
%$ urlwrite('http://www.dynare.org/Datasets/data_ca1_csv.csv','data_ca1_csv.csv');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment