Problem 1341. Track Logic
A sensor produces either a hit (1) or a miss (0) for a given target once per scan. The sensor is also equiped with a tracker which uses the following logic: If a target is detected in 3 out of 8 scans, a track is started. If a target in track is not seen for 6 scans, the track is dropped. Write a function to give the track state (1 = in track, 0 = not in track) given an arbitrary array of hits and misses.
Solution Stats
Problem Comments
Solution Comments
Show commentsProblem Recent Solvers47
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15685 Solvers
-
351 Solvers
-
Return unique values without sorting
970 Solvers
-
Create an n-by-n null matrix and fill with ones certain positions
661 Solvers
-
Return fibonacci sequence do not use loop and condition
705 Solvers
More from this Author4
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!