Have one array follow another array with a threshhold
1 view (last 30 days)
Show older comments
Hi there! I've got two arrays and I want to put a threshhold on one of them and have the other array follow it (see example down below). After the threshhold is done, I'd like my array A1 follow the new A2, meaning that the first 3 values of A1 should be removed.
Any tips on how to do this?
A1 = [1 4 5 8 2 2 4];
A2 = [2 5 8 15 18 24 23]
A2Thresh = A2 < 10 | A2 > 30;
A2(A2Thresh) = [ ]
0 Comments
Accepted Answer
Dyuman Joshi
on 24 Mar 2023
Edited: Dyuman Joshi
on 24 Mar 2023
Use the same approach for A1 as well.
A1 = [1 4 5 8 2 2 4];
A2 = [2 5 8 15 18 24 23];
A2Thresh = A2 < 10 | A2 > 30;
A2(A2Thresh) = []
A1(A2Thresh) = []
Edit - This works only if both A1 and A2 have same size
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!