Skip to content
Snippets Groups Projects
Commit fc6e688f authored by Marco Ratto's avatar Marco Ratto
Browse files

Bug fix for when a parameter is orthogonal to any other one in the model.

(cherry picked from commit c9a2dbcb)
parent 3d0bfeef
Branches
Tags
No related merge requests found
......@@ -84,7 +84,9 @@ for ll = 1:n,
for i=1:k,
plist='';
for ii=1:ll,
plist = [plist ' $' pnames_TeX(pars{i,ll}(ii),:) '$ '];
if ~isnan(pars{i,ll}),
plist = [plist ' $' pnames_TeX(pars{i,ll}(ii),:) '$ '];
end
end
fprintf(fidTeX,'$%s$ & [%s] & %7.3f \\\\ \n',...
pnames_TeX(i,:),...
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment