Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下约束要在 Mosek 中实现,其中未知变量是 x。
我正在尝试关注这里的讨论。我可以将约束写为 15 个指数锥和一半空间之间的交集。但是,鉴于我有未知 x 的元素的线性组合,在 Mosek 中编写指数锥的最佳方法是什么?
在 Fusion API 中,您将约束编写t\geq exp(u)为
t\geq exp(u)
M.constraint(Expr.hstack(t, Expr.constTerm(1.0), u), Domain.inPExpCone())
并且u可以是一个以更复杂的方式构造的表达式,比如
u
y1 = Expr.sub(Expr.dot(c1, x), b1) u = Expr.mul(r, y1) ....
等等。