Elegant / Vectorized way of getting array from start_index vector and end_index vector?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hello
Suppose start_index = [1 5 10]; and end_index = [3 8 12];
Is there an elegant solution to get an output of [1 2 3 5 6 7 8 10 11 12], that is the function takes each start value and gives all inclusive values between the start and end value, repeats with the next index, until all inclusive values are included in a single output vector?
Thank you
0 comentarios
Respuesta aceptada
Azzi Abdelmalek
el 16 de Mzo. de 2013
Editada: Azzi Abdelmalek
el 16 de Mzo. de 2013
EDIT
v=[1 2 3 5 6 7 8 10 11 12]
start_index = [1 5 10];
end_index = [3 8 12];
out=cell2mat(arrayfun(@(x,y) x:y,start_index, end_index,'un',0))
out=intersect(out,v)
Más respuestas (1)
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!