Skip to main content
letter
. 2020 Dec 28;21(1):146. doi: 10.3390/s21010146
Algorithm 1: Multi-stage Bandwidth Detection.
  Input Samples y and significance level α;
  Output Detected bandwidth K or None;
 1: for k=1,2,,M1 do
 2:  Calculate test statistic according to (13);
 3:  Calculate the p-value of the test according to (15);
 4:  if p>α then
 5:   Let bandwidth K=k and stop;
 6:  else
 7:   k=k+1;
 8:  end if
 9: end for