finding index of precise value

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

 採用された回答

Andrei Bobrov
Andrei Bobrov 2015 年 7 月 7 日

0 投票

d = datenum(Time);
vt = datevec(d);
out = find(vt(:,6) == 0);

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeMatrix Indexing についてさらに検索

タグ

質問済み:

2015 年 7 月 7 日

回答済み:

2015 年 7 月 7 日

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by