quad_form | R Documentation |
The quadratic form, x^TPx
.
quad_form(x, P)
x |
An Expression or vector. |
P |
An Expression or matrix. |
An Expression representing the quadratic form evaluated at the input.
x <- Variable(2)
P <- rbind(c(4,0), c(0,9))
prob <- Problem(Minimize(quad_form(x,P)), list(x >= 1))
result <- solve(prob)
result$value
result$getValue(x)
A <- Variable(2,2)
c <- c(1,2)
prob <- Problem(Minimize(quad_form(c,A)), list(A >= 1))
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.