Borrar filtros
Borrar filtros

How to remove specific numbers from an array?

30 visualizaciones (últimos 30 días)
Sumanth
Sumanth el 9 de Feb. de 2023
Editada: Askic V el 28 de Feb. de 2023
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.

Respuesta aceptada

Askic V
Askic V el 9 de Feb. de 2023
Editada: Askic V el 28 de Feb. de 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

Más respuestas (0)

Categorías

Más información sobre Problem-Based Optimization Setup en Help Center y File Exchange.

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by