Hello,
i would like to improve my minimization with a norm constraint.
My old problem was:
diag=optimize([s==a]+ConstrT+ConstrB,s'*s,sdpsettings('solver','gurobi','verbose',0,'usex0',0))
diag =
struct with fields:
yalmiptime: 0.5723
solvertime: 0.0037
info: 'Successfully solved (GUROBI-GUROBI)'
problem: 0
Now i add this non linear scalar sp such that -> Nonlinear scalar (real, models 'norm', 1 variable)
Then i impose this constraint:
I try to solve once again my problem adding this constraint:
diag=optimize([s==a]+ConstrT+ConstrB+ConstrSp,s'*s,sdpsettings('solver','gurobi','verbose',0,'usex0',0))
Warning: Solver not applicable (gurobi)
diag =
struct with fields:
solvertime: 0
info: 'Solver not applicable (gurobi)'
problem: -4
yalmiptime: 0.1970
Any suggestion on which solver should i use to solve this problem?