You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I am measuring 7 measurements which are x and estimating both x and x_dot.
While i am getting good Kalman filtering on the measured vector i am getting 0 for with x_dot.
Can someone point where i am missing?
Thanks
Here is my implementation.
`
class Kalman():
def init(
self,
dim_x = 14,
X0 = [0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.],
p=1,
r=100,
q=1,
dt = 1/10):
# observation of position (xyz, qw qx qy qz), estimation of velocity and position
self.f = KalmanFilter(dim_x=dim_x, dim_z=int(dim_x/2))
Hi,
I am measuring 7 measurements which are x and estimating both x and x_dot.
While i am getting good Kalman filtering on the measured vector i am getting 0 for with x_dot.
Can someone point where i am missing?
Thanks
Here is my implementation.
`
class Kalman():
def init(
self,
dim_x = 14,
X0 = [0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.,0.],
p=1,
r=100,
q=1,
dt = 1/10):
# observation of position (xyz, qw qx qy qz), estimation of velocity and position
self.f = KalmanFilter(dim_x=dim_x, dim_z=int(dim_x/2))
`
The text was updated successfully, but these errors were encountered: