Clear Filters
Clear Filters

How to remove specific numbers from an array?

30 views (last 30 days)
lb = [0 0 0 0 0];
ub = [24 24 24 24 24];
How can I remove or not consider certain values in the array? For each 0 - 24 range for 5 different slots, I want to eliminate the numbers 10 to 18.

Accepted Answer

Askic V
Askic V on 9 Feb 2023
Edited: Askic V on 28 Feb 2023
If you want to remove certain values from the array, please have a look at this simple example:
v = randi(10,1,20) % generate 20 random integer numbers in interval 0 to 20
v = 1×20
8 3 2 3 2 8 10 7 10 5 4 4 3 7 7 5 7 4 8 10
ind = v>3 & v<7; % find indices of elements in certain interval
v(ind) = [] % remove those elements that fits criteria
v = 1×15
8 3 2 3 2 8 10 7 10 3 7 7 7 8 10

More Answers (0)

Categories

Find more on Problem-Based Optimization Setup in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!