sigma_max function

Maximum Singular Value

Maximum Singular Value

The maximum singular value of a matrix. methods

sigma_max(A = A)

Arguments

  • A: An Expression or matrix.

Returns

An Expression representing the maximum singular value.

Examples

C <- Variable(3,2) val <- rbind(c(1,2), c(3,4), c(5,6)) obj <- sigma_max(C) constr <- list(C == val) prob <- Problem(Minimize(obj), constr) result <- solve(prob, solver = "SCS") result$value result$getValue(C)
  • Maintainer: Anqi Fu
  • License: Apache License 2.0 | file LICENSE
  • Last published: 2024-11-07