Kalman Filter for 6DOF IMU Implementation (3/6)

แชร์
ฝัง
  • เผยแพร่เมื่อ 15 ต.ค. 2024

ความคิดเห็น • 4

  • @Ecku001
    @Ecku001 5 ปีที่แล้ว +8

    Thank you for making this video series. This is really useful tutorial for beginners. However, I found small mistakes in the linear algebra. If you would like to use the MATLAB solution (which lines are commented out), you have to define the Kalman variables in the following way:
    % Create Kalman filter parameters
    xk = zeros(1,2)';
    pk = [0.5 0; 0 0.1];
    K = zeros(1,2)';
    phi = [1 deltaT; 0 1];
    psi = [deltaT 0]';
    R = 0.03;
    Q = [0.002^2 0; 0 0];
    H = [1 0];
    These are important modifications in order to get correct vector-matrix equations. I hope it will help for MATLAB users.
    Good job!

  • @DRAMBgo
    @DRAMBgo 11 หลายเดือนก่อน

    Thanks for sharing. I was able to implement my Kalman filter, understanding the math behind it. The most important concept of this tutorial is the sensor model!

  • @truongtansang7500
    @truongtansang7500 3 ปีที่แล้ว

    Thanks for this Tutorial, You inspire for my project !

  • @muhammadmunij5456
    @muhammadmunij5456 3 ปีที่แล้ว

    plz give us the code