We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
QP solvers usually describe quadratic functions as:
f(x) = 0.5 x^T H x + x^T g + λ
but in RobOptim, GenericNumericQuadraticFunction considers:
GenericNumericQuadraticFunction
f(x) = x^T A x + x^T b + c
Thus, we have H = 2 A, which may be a source of error for users used to traditional QP solvers.
H = 2 A
The text was updated successfully, but these errors were encountered:
No branches or pull requests
QP solvers usually describe quadratic functions as:
but in RobOptim,
GenericNumericQuadraticFunction
considers:Thus, we have
H = 2 A
, which may be a source of error for users used to traditional QP solvers.The text was updated successfully, but these errors were encountered: