Do not consider variables that are not column vectors.

time-shift
Stéphane Adjemian (Scylla) 2014-08-28 12:31:51 +02:00
parent 648c4717ad
commit 06f4926553
1 changed files with 7 additions and 1 deletions

View File

@ -97,9 +97,15 @@ if isempty(varlist0)
continue
end
if list_of_variables(current_variable_index).global || list_of_variables(current_variable_index).persistent
% A variable cannot be a global or persistent variable.
continue
end
if list_of_variables(current_variable_index).complex || ~strcmp(list_of_variables(current_variable_index).class,'double')
% A variable cannot be complex.
continue
end
if list_of_variables(current_variable_index).size(2)>1
% A variable must be passed as a column vector.
continue
end
try