How to speed up function approximation?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a code in MATLAB2016:
...
tic
is_t1(:,i)=(is_t1(:,i)/mmax);
[f,r2]=fit(tr,is_t1(:,i),'1-b*exp(-((a*x)/(var_c)))','StartPoint',[0.8 0.8]);
T1(i)=-(var_c*log(-(0.6321 – 1)/f.b))/f.a;
toc
...
end
Its execution time: ~0,031s
Number of approximation points in a given task: ~7000-10000
How to ,speed up this operation?
Thanks for any help
댓글 수: 0
채택된 답변
Matt J
2019년 8월 19일
편집: Matt J
2019년 8월 19일
There are a few inefficiencies that I see. Firstly, you shouldn't pick an arbitrary StartPoint like [0.8,0.8]. The problem can be log-transformed into a linear equation and solved algebraically for a much more informed initial guess,
xdata=tr;
ydata=1-is_t1(:,i);
z=[x(:), ones(size(xdata(:)))]\log(ydata);
a0=-z(1)*var_c;
b0=exp(z(2));
In fact, depending on your needs and the noisiness of your data, the above analytical solution might be accurate enough already. Maybe you don't need to use an iterative routine like fit() after all.
But if the data noise is significant and you wish to further refine a0 and b0 with iterative nonlinear fitting, I would recommend fminspleas
which will let you iterate over a only,
modelfun=@(a) exp((-a/var_c)*x);
[a,b] = fminspleas({modelfun}, a0, xdata,ydata);
Notice also that we've optimized the implementation of your modelfun() a bit. Here, it only executes 2 vectorized operations whereas your original implementation had 5.
댓글 수: 0
추가 답변 (2개)
Chris
2019년 8월 19일
I dont have those toolboxes but often you can start an optimization problem with a randomly selected sub-set of data run for a short time to get a better initial guess before running the algorithm over all your data. YMMV. Take care with this and make sure you understand your data and how you are modeling it.
Yair Altman
2019년 8월 19일
It may be useful to replace the string with a function handle.
Also, setting the convergence tolerances to smaller values than the defaults might converge faster without a meaningful degradation of the result.
Lastly, read https://undocumentedmatlab.com/blog/speeding-up-builtin-matlab-functions-part-1 where I discuss different ways of significantly speeding-up the fitdist function. It's not the same as your fit but similar ideas can possibly also be useful in your case.
참고 항목
카테고리
Help Center 및 File Exchange에서 Least Squares에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!