GoldenFalcon1 / Trajectory-Generation

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Quintic Polynomial Solver

In this exercise you will implement a quintic polynomial solver. This will let you take boundary conditions as input and generate a polynomial trajectory which matches those conditions with minimal jerk.

Inputs Your solver will take three inputs.

1.start - [si, sii, siii]

2.end - [sf, sff, sfff]

3.T - The duration of maneuver in seconds.

What to do

Implement the JMT(start, end, T) function in main.cpp

About


Languages

Language:C++ 100.0%