How to extract a part of a given vector and store it in a new vector using loops (for loop) ?
42 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Zack Shane
el 21 de Oct. de 2013
Comentada: Zack Shane
el 21 de Oct. de 2013
Given vector: [1 2 3 4 5 6 7 8 9 10];
New vector, let's say: [4 5 6 7].
2 comentarios
Azzi Abdelmalek
el 21 de Oct. de 2013
Editada: Azzi Abdelmalek
el 21 de Oct. de 2013
Is it homework? If yes, what have you tried so far?
Zack Shane
el 21 de Oct. de 2013
Editada: Azzi Abdelmalek
el 21 de Oct. de 2013
Respuesta aceptada
sixwwwwww
el 21 de Oct. de 2013
Dear Abhisek, here is the code for it:
a = [1 2 3 4 5 6 7 8 9 10];
indices_of_values2save = [4 5 6 7];
count = 1;
for i = 1:length(a)
if any(i == indices_of_values2save)
b(count) = a(i);
count = count + 1;
end
end
I hope it helps. Good luck!
Más respuestas (1)
Image Analyst
el 21 de Oct. de 2013
Editada: Image Analyst
el 21 de Oct. de 2013
data2 = data1(seg1:seg2); % Extract indexes seg1 through seg2 into new vector.
Ver también
Categorías
Más información sobre Loops and Conditional Statements 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!