Skip to content
#

convex-optimization

Here are 270 public repositories matching this topic...

Riskfolio-Lib
ericphanson
ericphanson commented Aug 5, 2020

Now that Convex.jl is backed by MOI, we can take advantage of its ability to write to file formats (https://jump.dev/MathOptInterface.jl/stable/apimanual/#File-formats-1). It's actually pretty easy to do this already, e.g.

using Convex, COSMO
x = HermitianSemidefinite(2)
p = minimize( real(tr(x)), tr(x * [1.0 im; -im 0]) == 0, x[1,1] == 1)
solve!(p, COSMO.Optimizer)

using MathOp

Improve this page

Add a description, image, and links to the convex-optimization topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the convex-optimization topic, visit your repo's landing page and select "manage topics."

Learn more