Fixed bug (missing condition on the number of returned arguments).

time-shift
Stéphane Adjemian (Charybdis) 2013-09-02 23:27:04 +02:00
parent 103b6cf803
commit 1d6ea1556d
1 changed files with 4 additions and 2 deletions

View File

@ -112,8 +112,10 @@ for i=1:nn
fprintf(['Output argument n°' int2str(j) ' didn''t give the expected result.\n']);
end
end
info(i,4) = {tmp};
info(i,5) = {NaN};
if nargout>1
info(i,4) = {tmp};
info(i,5) = {NaN};
end
check = 0;
else
if nargout>1