abs cannot be used in problem-based optimization expression

조회 수: 7 (최근 30일)
Bruno Luong
Bruno Luong 2023년 7월 29일
댓글: Bruno Luong 2023년 7월 29일
Can someone tell me why I cannot use abs() in this simple setup.
prob = optimproblem();
x = optimvar('x',1,1);
y = 1;
x0 = struct('x',0);
prob.Objective = abs(x-y); % sum(abs(x-y)) also doesn't work
Incorrect number or types of inputs or outputs for function 'abs'.
%prob.Objective = norm(x-y,1); % this however works
sol = solve(prob,x0)
If I use prob.Objective = norm(x-y,1) it wokks just fine

채택된 답변

Bruno Luong
Bruno Luong 2023년 7월 29일
  댓글 수: 2
Torsten
Torsten 2023년 7월 29일
sqrt((x-y).^2) doesn't seem to work, either.
Bruno Luong
Bruno Luong 2023년 7월 29일
Syntaxically it works, but I have to add a small margin to avoid singularity of the derivative at 0
prob = optimproblem();
x = optimvar('x',1,1);
y = 1;
x0 = struct('x',0);
prob.Objective = sqrt((x-y).^2+eps); % sum(abs(x-y)) also doesn't work
sol = solve(prob,x0)
Solving problem using fminunc. Local minimum found. Optimization completed because the size of the gradient is less than the value of the optimality tolerance.
sol = struct with fields:
x: 1

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with Problem-Based Optimization and Equations에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by