Skip to content
Snippets Groups Projects
Commit a00c0413 authored by t steve's avatar t steve
Browse files

documentattion

parent 651682b4
No related branches found
No related tags found
No related merge requests found
......@@ -55,11 +55,10 @@ BEZIER_COM_TRAJ_DLLAPI ResultData solve(Cref_matrixXX A, Cref_vectorX b, Cref_ma
/**
* @brief solveIntersection Solve the QP problem, that find a point inside the constraints Ab that minimise the cost Hg
* @param Ab s.t. Ax <= b
* @param Hg min x'Hx + g'x
* @param init x_init
* @return ResultData
* @brief solve x' h x + 2 g' x, subject to A*x <= b using quadprog, with x of fixed dimension 3
* @param Ab Inequality matrix and vector
* @param Hg Cost matrix and vector
* @return
*/
BEZIER_COM_TRAJ_DLLAPI ResultData solveIntersection(const std::pair<MatrixXX, VectorX>& Ab,const std::pair<MatrixXX, VectorX>& Hg, const Vector3& init);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment