Problem with threshold in if statement
Show older comments
My goal is to determine the difference between troughs and peaks, and select the troughs/peaks with a difference bigger than 35.
Sometimes there is no difference bigger than 35. So now I'm writing an if statement that if there is no difference bigger than 35, that it can just be 0.
The issue that I have is that there are multiple values varying below and above the threshold so it's not correctly identifying the threshold.
It should select the first trough/peak with a difference bigger than 35 and if there is no difference bigger than 35, then it should just be 0.
Here is the code that I have:
P = load('Ps.mat');
Ps = P.Ps;
threshold = 35;
[mins, min_locs] = findpeaks(-Ps);
[maxs, max_locs] = findpeaks(Ps);
peaks = [maxs max_locs];
troughs = [mins min_locs];
sp = size (peaks);
st = size (troughs);
s = max(sp(1), st(1));
dif = [[peaks;zeros(abs([s 0] - sp))],[troughs;zeros(abs([s, 0]-st))]];
difs = [dif (dif(:,1)+dif(:,3))];
if difs(difs(:,5)>threshold,:);
[idx, ~] = find(difs(:,5)>threshold);
difs = difs(unique(idx),:);
thresh = difs(1,4);
else thresh = 0
end
3 Comments
Mathieu NOE
on 26 Oct 2022
it would definitively help to share some data as well to test the code !
Jeffrey Clark
on 27 Oct 2022
@Siegmund Nuyts, hard to say from what you gave but please note that the conditional if difs(difs(:,5)>threshold,:) will be true as long as none of the difs(difs(:,5)>threshold,:) are zero. With floating point data it is unlikely that any column would be zero when column 5>threshold so the if may always be executing. Did tou intend if difs(:,5)>threshold which would execute the if part when any row with column 5>threshold was found?
Siegmund Nuyts
on 27 Oct 2022
Accepted Answer
More Answers (0)
Categories
Find more on Descriptive Statistics 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!