summaryrefslogtreecommitdiff
path: root/TapTogglingAlgos/Threshold.m
blob: e81f10bd05615cb60815c639f0c250477f5998dd (plain)
1
2
3
4
5
function mask = Threshold(taps, thresholdPercent, ~)
    mask = ones(size(taps));
    maxTapVal = max(abs(taps));
    mask(abs(taps) < thresholdPercent*maxTapVal) = 0;
end