Fixed bug (conversion of variable names in tex).

time-shift
Stéphane Adjemian (Charybdis) 2013-09-09 11:25:12 +02:00
parent bca9430c5c
commit 80218a1b65
1 changed files with 3 additions and 7 deletions

View File

@ -25,15 +25,8 @@ end
if iscell(name)
nn = length(name);
id = findstr(cell2mat(transpose(name)),'_');
else
nn = 1;
id = findstr(name,'_');
end
if isempty(id)
tex = name;
return
end
if iscell(name)
@ -51,6 +44,9 @@ for i=1:nn
id = findstr(name,'_');
len = length(tex);
end
if isempty(id)
continue
end
n = length(id);
if id(1)==1
if iscell(name)