Minor update to the matlab interface

This commit is contained in:
Marcel Kronfeld
2011-02-01 13:28:55 +00:00
parent de35b3438b
commit 649f8e6390
2 changed files with 13 additions and 8 deletions

View File

@@ -5,9 +5,9 @@ function [sol, fit] = getResult(int)
% [sol, fit] = getResult(int)
if (isFinished(int))
sol = int.result;
sol = int.result';
else
sol = int.mp.getIntermediateResult();
sol = int.mp.getIntermediateResult()';
end
if (isempty(sol))