我想解决最大化目标的优化,该目标是矩阵的绝对值之和。但是,我找不到准确的方法来获得它:
例如:
import mosek.fusion as mf
from mosek.fusion import Model, Domain, Expr, ObjectiveSense
with Model('lol') as M:
x = M.variable('x', [5,1], Domain.inRange(-1,1))
M.objective('obj', ObjectiveSense.Maximize, abs(x))
M.solve()
不工作
Type Error: bad operand type for abs(): 'RangedVariable'
我怎样才能得到 的绝对值x
?