Search⌘ K
AI Features

Exercise: Sensor Noise Simulation

Explore how to simulate sensor noise for GPS readings by generating random points using Python's random and math modules. Learn to calculate distances with math.hypot and count points within a safe radius. This exercise helps you apply module functions correctly and deepen your understanding of code organization.

Problem statement

We are testing a navigation algorithm and need to simulate noisy GPS readings. The goal is to generate random coordinates around the center ...