View full-text article in PMC Entropy (Basel). 2021 Aug 17;23(8):1064. doi: 10.3390/e23081064 Search in PMC Search in PubMed View in NLM Catalog Add to search Copyright and License information © 2021 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/). PMC Copyright notice Algorithm 1 Occlusion. 1:procedureocclude(x,wsize,widx) 2: len←length(x) 3: xocc←copy(x) 4: ov←0 ▹ user-defined occlusion value. 5: start←wsize·widx 6: end←start+wsize 7: if end>len then 8: end←len 9: end if 10: for i←start,end do 11: xocc[i]←ov ▹ window occlusion 12: end for 13: return xocc 14:end procedure