여러 종류의 칼만필터(Family members of Kalman Filter)(EnKF)
Ensemble Kalman Filter Ensemble Kalman Filter 는 PythonRobotics 예제코드 위주로 진행해보겠습니다. def main(): print(__file__ + " start!!") time = 0.0 # RF_ID positions [x, y] RF_ID = np.array([[10.0, 0.0], [10.0, 10.0], [0.0, 15.0], [-5.0, 20.0]]) # State Vector [x y yaw v]' xEst = np.zeros((4, 1)) xTrue = np.zeros((4, 1)) px = np.zeros((4, NP)) # Particle store of x xDR = np.zeros((4, 1)) # Dead reckoning # hi..
2021. 8. 19.