blob: 087a750e1e22f82868ce4024977cc24bb606302b (
plain) (
blame)
1
2
3
4
5
6
7
|
function [out] = detect_missed( position, segment, track)
%DETECT_MISSED Retunerar true om position ligger utanför nuvarande segment
%
a = track_len(segment);
out = a <= position;
end
|