finding index of precise value
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Rica
el 7 de Jul. de 2015
Respondida: Andrei Bobrov
el 7 de Jul. de 2015
Hi all, I try to use this function:
l=find(find(strcmp(Time,'09:00:00'))). Time is an known cell.
How could make a loop for this function to find the index of each minute:
l=find(find(strcmp(Time,'09:00:00')))
l=find(find(strcmp(Time,'09:01:00')))
l=find(find(strcmp(Time,'09:02:00')))
.
.
.
l=find(find(strcmp(Time,'10:00:00')))
l=find(find(strcmp(Time,'10:01:00')))
and so on
Thie Time cell is of 500ms steps.
Thank you
0 comentarios
Respuesta aceptada
Andrei Bobrov
el 7 de Jul. de 2015
d = datenum(Time);
vt = datevec(d);
out = find(vt(:,6) == 0);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre String Parsing 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!