Skip to content
New issue

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

Fix spline depilated warning #24

Closed
AtsushiSakai opened this issue Jan 16, 2018 · 1 comment
Closed

Fix spline depilated warning #24

AtsushiSakai opened this issue Jan 16, 2018 · 1 comment

Comments

@AtsushiSakai
Copy link
Owner

.../PathPlanning/ModelPredictiveTrajectoryGenerator/motion_model.py:48: DeprecationWarning: spline is deprecated!
spline is deprecated in scipy 0.19.0, use Bspline class instead.
kp = scipy.interpolate.spline(tk, kk, t, order=2)
/Users/atsushisakai/.pyenv/versions/anaconda3-4.4.0/lib/python3.6/site-packages/scipy/interpolate/interpolate.py:2889: DeprecationWarning: splmake is deprecated!
splmake is deprecated in scipy 0.19.0, use make_interp_spline instead.
return spleval(splmake(xk, yk, order=order, kind=kind, conds=conds), xnew)
/Users/atsushisakai/.pyenv/versions/anaconda3-4.4.0/lib/python3.6/site-packages/scipy/interpolate/interpolate.py:2889: DeprecationWarning: spleval is deprecated!
spleval is deprecated in scipy 0.19.0, use BSpline instead.
return spleval(splmake(xk, yk, order=order, kind=kind, conds=conds), xnew)
./PathPlanning/ModelPredictiveTrajectoryGenerator/motion_model.py:73: DeprecationWarning: spline is deprecated!
spline is deprecated in scipy 0.19.0, use Bspline class instead.
kp = scipy.interpolate.spline(tk, kk, t, order=2)

@AtsushiSakai
Copy link
Owner Author

Done

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant