How to binarize a signal?
Show older comments
How a signal can be binarize?
Answers (1)
Andrew Davies
on 6 Apr 2018
Edited: Andrew Davies
on 6 Apr 2018
Depends on the criteria you want to use to create your binary signal, but simply using a comparison operator on an array works. For example to use a threshold (0.5 here) and have 1 above and 0 otherwise:
s = rand(1,10)
b = s > 0.5
1 Comment
Muhammad Mazhar Saeed Butt
on 6 Apr 2018
Categories
Find more on Parametric Modeling in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!