Clear Filters
Clear Filters

Why won't this equality work?

1 view (last 30 days)
Andrew Mosqueda
Andrew Mosqueda on 10 Oct 2022
Answered: David Hill on 10 Oct 2022
I got my top 17 values and I need to obtain a set corresponding values with it. I tried to use a code I used beforehand but it was comparing a single value, not a matrix where I think my problem resides. When ran it goes through obtainining none of the secondary values (Ts).
wh17=maxk(w(:,3),17);
Hs=mean(wh17);
for i=1:50
if w(i,3)==wh17(:)
Ts=w(i,2)
end
end

Accepted Answer

David Hill
David Hill on 10 Oct 2022
wh17=maxk(w(:,3),17);
Hs=mean(wh17);
Ts=w(ismember(w(:,3),wh17),2);

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products


Release

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!