How should the value of objective function be returned for fmincon?

조회 수: 1 (최근 30일)
Hello,
I have an objective function that computes the difference between actual and predicted values. The value, f, computed below is returned to fmincon
f = (actual - predicted)
The size of actual and predicted is [ntime, nstate]. i.e ntime is the number of time points and nstate is the number of state variables
For instance, in my case both actal and predicted is of size 500 x 10 ( 500 time observations and 10 variables).
To lsqnonlin which accepts a vector values objective function , I could return `f = (actual - predicted)` directly. But I get an error that says, only a scalar value can be returned from the objective function to fmincon.
I tried the following in fmincon
f = (actual - predicted).*(actual - predicted);
f = sum(f, 'all'); % takes summation over rows (time points) and columns (variables)
But the solver didn't provide an optimal solution
Any suggestions on how to proceed?
Thanks

채택된 답변

Walter Roberson
Walter Roberson 2020년 3월 28일
f = sum((actual(:) - predicted(:)).^2);
  댓글 수: 3
Walter Roberson
Walter Roberson 2020년 3월 28일
Yes, but .^2 should be more efficient than the .*

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Surrogate Optimization에 대해 자세히 알아보기

제품


릴리스

R2019b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by