save a vector in an array
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Hi! I have this loop and i want to save the index (ind) in a vector or array. How should i do this
i thougt about a=[a;ind], but it was not true.
%code
for l=1:length(date_time_l)
[~, ind] = min(abs(numdates-(date_time_l(l))));
end
%end of code
i thougt about a=[a;ind], but it was not true.
thank you
0 comentarios
Respuesta aceptada
Thomas
el 6 de Nov. de 2012
try
for ii =1:length(date_time_l)
[~, ind(ii)] = min(abs(numdates-(date_time_l(ii))));
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Phylogenetic Analysis 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!