Understanding the Hessian Matrix definition #1612
-
Could someone help me understand the mapping of the objective to the Hessian Matrix? The example below is from the C example included in the src code. I mainly don't understand where the powers come from and what creates the this term, " - 2x_1x_3". Thank you // Illustrate the solution of a QP |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
Assume that the Hessian The entries in the upper triangle of the hessian are not given, but implied by symmetry The first column has indices (0, 2) and values (2.0, -1.0), so Does this help? |
Beta Was this translation helpful? Give feedback.
Yes this makes it clear thank you