What's wrong with my objective function?

조회 수: 1 (최근 30일)
Richárd Tóth
Richárd Tóth 2019년 8월 3일
댓글: Star Strider 2019년 8월 3일
Hello
When I run this line of code,
[d,fval] = fseminf(@objfun,x0,numOfInequations,@semInfConstraints);
I get the following error:
Input arguments to function include colon operator. To input the colon character, use ':' instead.
Error in fseminf (line 424)
initVals.f = initVals.f(:);
Error in optimize (line 29)
[d,fval] = fseminf(@objfun,x0,numOfIneqs,@semInfConstraints);
Here is my objective function:
function f = objfun(D,s)
global numOfVars
% Objective function, -1*D(1)*D(2)*...*D(n) /n dimension/
str = 'f=@(D) -1*';
dimension = numOfVars;
for i=1:dimension
if i<dimension
str = join([str 'D(' string(i) ')*'],'');
else
str = join([str 'D(' string(i) ');'],'');
end
end
eval(str);
  댓글 수: 3
Richárd Tóth
Richárd Tóth 2019년 8월 3일
Okay, I think the problem is
str = 'f=@(D) -1*';
By removing the @(D), I no longer get the error message about the colon.
Star Strider
Star Strider 2019년 8월 3일
If you want to create a functon from a string, use the str2func function. It likely does everything you’re doing, however it’s more straightforward. Also,using sprintf to create your function strings is likely more efficient than concatenating strings.

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

답변 (0개)

카테고리

Help CenterFile Exchange에서 Batch Linearization에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by