Live data from Hacker News

Viewing profile — alex_be

alex_be

HN member
Joined
Sun, Oct 15, 2023, 8:50 PM UTC
HN karma
253
Public activity
29 items

About alex_be

No profile information was provided.

Recent public activity

  1. comment
    Comment #48515171

    I've been using Firefox for almost 20 years as my default browser. Thank you for your work!

  2. comment
    Comment #48433109

    I've been and I've seen. It is a fence. A very long fence. You can't cross it with bare hands, and if you try, you will be shot. This is not the case when dozens of bulldozers simu…

  3. comment
    Comment #47811122

    "In addition the Moon has no atmosphere and is constantly bombarded by radiation from the Sun that causes the soil to become electrostatically charged." - You can use a magnetic or…

  4. comment
    Comment #47720434

    486 was my dream. Unfortunately, my parents didn't have money for it. I bought my first PC in 1999 - a Pentium 2. I invested a lot of money in the monitor; computers become obsolet…

  5. comment
    Comment #47716234

    Thanks a lot for your detailed and valuable comments. I will definitely include them in the tutorial. If you have additional comments, I would be happy to hear them.

  6. comment
    Comment #47708836

    True. It's about managing the risk rather than eliminating it. If you remove an outlier, you get a missing measurement and, as a result, higher uncertainty (error). But it is still…

  7. comment
    Comment #47708746

    Thanks a lot for this comment, Ted! This probably deserves its own example, not just a brief mention. I will definitely do that.

  8. comment
    Comment #47704889

    Interesting. It sounds like you ended up with a data-driven estimator. Did you have a chance to compare the data-driven and model-based approaches?

  9. comment
    Comment #47704745

    It's a free accessibility widget by Sienna. I tweaked the CSS to adapt it to the https://kalmanfilter.net/ style. You can find it here: https://accessibility-widget.pages.dev/

  10. comment
    Comment #47704577

    Classic :)

  11. comment
    Comment #47704511

    I have a chapter in my book that introduces sensor fusion as a concept. If you want to dive deeper into the sensor fusion topic, I would recommend Bar-Shalom's or Blackman's book.

  12. comment
    Comment #47704448

    Thanks for your feedback. I am thinking of writing a second volume with more advanced and less introductory topics, but I haven't decided yet. It is a serious commitment and it wil…

  13. comment
    Comment #47704271

    Kalman filter is about combining uncertain measurements, and human observations could be viewed as noisy sensors. On the other hand, the standard KF assumes unbiased sensors with G…

  14. comment
    Comment #47704190

    Yeah. Building things step by step often makes complex topics much easier to understand.

  15. comment
    Comment #47699710

    Thanks for your feedback! Actually the KF concept is generic, but as mentioned above: "The state transition and measurement equations belong to the system model. They describe the …

  16. comment
    Comment #47697130

    It is always a good idea to include outliers treatment in KF algorithm to filter out weird measurements.

  17. comment
    Comment #47696494

    The tutorial actually predates ChatGPT by quite a few years (first published in 2017). Today, I do sometimes use ChatGPT to fix grammar, but I am responsible for the content and it…

  18. comment
    Comment #47695421

    I agree that Kalman filters are not magic and that having a reasonable model is essential for good performance. Higher sampling rates can help in some cases, especially when tracki…

  19. comment
    Comment #47695364

    That's a fair question. My goal with the site was to make as much material available for free as possible, and the core linear Kalman filter content is indeed freely accessible. Th…

  20. comment
    Comment #47695316

    That's a good article. I also like the visual approach there. My goal here was a bit different. I walk through a concrete radar example step by step, and use multiple examples thro…

  21. comment
    Comment #47695241

    That's an interesting idea. The Kalman filter is definitely used in finance, often together with time-series models like ARMA. I've been thinking about writing something, although …

  22. comment
    Comment #47695143

    You’re pointing out a real conceptual issue: where the system model ends and where the Kalman filter begins. In Kalman filter theory there are two different components: - The syste…

  23. comment
    Comment #47694671

    That's a good point. "Optimal" in this context means that, under the standard assumptions (linear system, Gaussian noise, correct model), the Kalman Filter minimizes the estimation…

  24. comment
    Comment #47694619

    To keep the example focused and reasonably short, I treated Q matrix as given and concentrated on building intuition around prediction and update. But you're right that this can fe…

  25. comment
    Comment #47693178

    Author here. I recently updated the homepage of my Kalman Filter tutorial with a new example based on a simple radar tracking problem. The goal was to make the Kalman Filter unders…