norm_nuc | R Documentation |
The nuclear norm, i.e. sum of the singular values of a matrix.
norm_nuc(A)
A |
An Expression or matrix. |
An Expression representing the nuclear norm of the input.
C <- Variable(3,3)
val <- cbind(3:5, 6:8, 9:11)
prob <- Problem(Minimize(norm_nuc(C)), list(C == val))
result <- solve(prob)
result$value
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.