ICB-DCM/PESTO

Wrong size of hessian with fixed parameters

Closed this issue · 0 comments

LoosC commented

Line 54 in performOptimizationFmincon.m

hessian_opt = nan(parameters.number);

should instead read

hessian_opt = nan(numel(freePars));