update jupyter docs

This commit is contained in:
Atsushi Sakai
2020-01-05 22:37:08 +09:00
parent e4fb755471
commit 763ca4fd15
2 changed files with 10 additions and 3 deletions

View File

@@ -26,6 +26,7 @@ class QuinticPolynomial:
def __init__(self, xs, vxs, axs, xe, vxe, axe, time):
# calc coefficient of quintic polynomial
# See jupyter notebook document for derivation of this equation.
self.a0 = xs
self.a1 = vxs
self.a2 = axs / 2.0