Skip to content

Commit

Permalink
remove unused scipy dependency missing from latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
petercorke committed May 11, 2024
1 parent 687d345 commit 2731430
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion roboticstoolbox/mobile/EKF.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
@Author: Peter Corke, original MATLAB code and Python version
@Author: Kristian Gibson, initial MATLAB port
"""

from collections import namedtuple
import numpy as np
from math import pi
from scipy import integrate, randn
from scipy import integrate
from scipy.linalg import sqrtm, block_diag
from scipy.stats.distributions import chi2
import matplotlib.pyplot as plt
Expand Down

0 comments on commit 2731430

Please sign in to comment.