Populate .csv with specific times and dates

1 回表示 (過去 30 日間)
Louise Wilson
Louise Wilson 2020 年 3 月 12 日
コメント済み: Bhaskar R 2020 年 3 月 12 日
Hello,
I am looking to create a spreadsheet which has values that span a time period of interest.
For example, say my data collection period is from 30 May 2019-30 June 2019, between the hours of 0600-2030 each day. I am collecting data every ten minutes.
I have figured out how to get the time to iterate between two dates and times in ten minute intervals, but how do I stop from including the times in the evening and morning of each day that I'm not interested in? After 2030 on each date, I want to skip to 0600 on the subsequent date.
t1=datetime(2019,5,30,6,0,0); %datetime 1
t2=datetime(2019,10,30,20,30,00); %datetime 2
t=t1:minutes(10):t2 %10 minutes intervals between the two times
t=t'; %transpose from one column to one row

回答 (1 件)

Bhaskar R
Bhaskar R 2020 年 3 月 12 日
required_times = t(hour(t)>12 & hour(t)<17) % where timings between 12 to 17 hours of the data
  2 件のコメント
Louise Wilson
Louise Wilson 2020 年 3 月 12 日
Thanks Bhaskar, this works. How do I be more specific in terms of time e.g. specify 2030 rather than 2100?
required_times = t(hour(t)>0600 & hour(t)<2030)
%doesnt work
Bhaskar R
Bhaskar R 2020 年 3 月 12 日
required_times = t(hour(t)>6+0/60 & hour(t)<20+30/60); % need to add normalized minutes

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeData Type Identification についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by