Skip to content

Commit

Permalink
LCMXL output fix
Browse files Browse the repository at this point in the history
  • Loading branch information
czaj committed Nov 24, 2017
1 parent 7b4d22d commit f99cc23
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions LCMXL/LCMXL.m
Expand Up @@ -732,6 +732,13 @@
ST = [ST,{['DetailsC',num2str(i)]}];%#ok<AGROW>
end

if size(Template1,2) < size(Temp,2)
Template1{1,size(Temp,2)} = [];
end
if size(Template2,2) < size(Temp,2)
Template2{1,size(Temp,2)} = [];
end

Template1 = [Template1;Temp];
Template2 = [Template2;Temp];

Expand Down

0 comments on commit f99cc23

Please sign in to comment.