Generating index from end and start index
Mostrar comentarios más antiguos
I am looking for an efficient way to do the following (without a loop so that large array can be handled efficiently). Any idea ?
A=rand(1,30) % some data from which I want to extract a subset
s=[1 5 10 22]; % start indexes of the subsets I want to extract
e=[3 7 17 25]; % end indexes of the subset I want to extract
R=[];
for i=1:length(s)
R=[R [s(i):e(i)]];
end
S=A(R); % the answer I am looking for, i.e. the subset of data I want to
% extract
1 comentario
per isakson
el 10 de Sept. de 2012
Editada: per isakson
el 10 de Sept. de 2012
- Did you analyze your code with the function, profile?
- Which version of Matlab do you use?
Respuesta aceptada
Más respuestas (2)
Oleg Komarov
el 10 de Sept. de 2012
1 voto
Use the mex routine, very fast and reliable.
Azzi Abdelmalek
el 10 de Sept. de 2012
A=rand(1,30) ;
s=[1 5 10 22];
e=[3 7 17 25];
l=repmat(1:4,2,1);
idx=eval(['[' sprintf('s(%d):e(%d) ',l(:)') ']'])
S=A(idx)
Categorías
Más información sobre Data Type Conversion en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!