How to remove specific numbers from an array?

30 次查看(过去 30 天)
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.

采纳的回答

Askic V
Askic V 2023-2-9
编辑:Askic V 2023-2-28
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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Problem-Based Optimization Setup 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by