lambda_min | R Documentation |
The minimum eigenvalue of a matrix, \lambda_{\min}(A)
.
lambda_min(A)
A |
An Expression or matrix. |
An Expression representing the minimum eigenvalue of the input.
A <- Variable(2,2)
val <- cbind(c(5,7), c(7,-3))
prob <- Problem(Maximize(lambda_min(A)), list(A == val))
result <- solve(prob)
result$value
result$getValue(A)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.