TroubleShoot FMinSearch with subscript assignment mismatch
Show older comments
I keep getting the following error:
Subscripted assignment dimension mismatch.
Error in fminsearch (line 190)
fv(:,1) = funfcn(x,varargin{:})
when I try to run the following optimization
objective = @(p) log(besseli(0,(((p(1)*exp(-xData/p(2))).*yData)./Variance),1)) - (((p(1)*exp(-xData/p(2))).^2) ./ (2.*Variance));
% unconstrained nonlinear optimization
parEst = fminsearch(objective,p0);
p0 is [1,2]. Variance is a predefined scalar. xData and yData are both [1,8].
Please help me as I have tried reading the help documents for fminsearch and for anonymous functions, but can't figure it out.
Accepted Answer
More Answers (1)
John D'Errico
on 15 Jan 2016
0 votes
This happens over and over again. fminsearch is an OPTIMIZER. It does not do nonlinear regression. There is a difference.
An optimizer finds the minimum value of a general function of multiple parameters. So a SCALAR valued function of one or more variables.
A nonlinear regression can be turned into an optimization by forming the sum of squares of residuals, and minimizing that as an objective.
But if you just throw a vector into a tool like fminsearch, expect it to fail. fminsearch has no idea what you want to do. Computers cannot read your mind.
1 Comment
Eric Diaz
on 15 Jan 2016
Categories
Find more on Surrogate Optimization in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!