function [ t_bo ] = backoff( UE, BI ) %BACKOFF Computes the backoff time in a cellular network % BI = backoff indicator [ms] % t_bo = time that the UE should wait before trying again [ms] a = 0; b = BI; t_bo = a + (b-a).*rand(UE,1); end