Skip to content
Snippets Groups Projects
Commit caa6d5d9 authored by Johannes Pfeifer's avatar Johannes Pfeifer Committed by Stéphane Adjemian
Browse files

Fix display of MH-history if parameter names do not have same length

In this case, cell2mat fails, because the dimensions are not consistent. Using char() instead padds with spaces

(cherry picked from commit 47b1a2df)
parent 6998d5b2
No related branches found
No related tags found
No related merge requests found
...@@ -137,7 +137,7 @@ if strcmpi(flag,'--load-mh-history') || strcmpi(flag,'--display-mh-history') ...@@ -137,7 +137,7 @@ if strcmpi(flag,'--load-mh-history') || strcmpi(flag,'--display-mh-history')
d1s = size(d1,2); d1s = size(d1,2);
d2s = size(d2,2); d2s = size(d2,2);
c0 = repmat(' ',length(names)+2,1); c0 = repmat(' ',length(names)+2,1);
c1 = char(' ', repmat('+',1,size(cell2mat(names),2)), cell2mat(names)); c1 = char(' ', repmat('+',1,size(char(names),2)), char(names));
s1 = char(' || ','++++',repmat(' || ', length(names),1)); s1 = char(' || ','++++',repmat(' || ', length(names),1));
t1 = repmat(' ',1,d1s); t1 = repmat(' ',1,d1s);
if d1s<=7 if d1s<=7
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment