Skip to content

Commit

Permalink
theta0 bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mobeets committed Dec 9, 2015
1 parent eb34bdb commit e00fe2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion +asd/+gauss/optMinNegLogEvi.m
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
gradObj = false;
end
if nargin < 4 || any(isnan(theta0))
theta0 = [1e-6 Y'*Y/numel(Y) ones(size(Ds,3),1)]';
theta0 = [1e-6 Y'*Y/numel(Y) ones(1,size(Ds,3))]';
% theta0 = pickRandomTheta0(lbs, ubs, isLog);
% theta0 = [1.1529 160.2757 1.0093 1.0048];
% theta0(2:end) = log(theta0(2:end))
Expand Down

0 comments on commit e00fe2d

Please sign in to comment.