필터 지우기
필터 지우기

convert epoch time(timestamps) into 30 minutes average bin?

조회 수: 1 (최근 30일)
Madan Kumar
Madan Kumar 2021년 6월 17일
편집: dpb 2021년 6월 19일
Hi,
I have a data file (of dimension 2195x56) for one day with 30 seconds interval (some data are missing). first column is the timestamps. I have to calculate data binned into 30 minutes average. I know "discretize" should work but I have timestamps. I tried using "discretize" but it shows that "discretize" should have numeric or logical. Can any one help. I have Matlab2015b. My code is below.
axy=importdata('data.txt');
time_st=axy(:,1);data=axy(:,2:end);
edges = datetime(2020,4,17,0,0:30:1440,24)';
bin = discretize(data,edges,edges(1:end-1));
  댓글 수: 5
Madan Kumar
Madan Kumar 2021년 6월 19일
Ok..Thank you.. I "ll do it..
dpb
dpb 2021년 6월 19일
편집: dpb 2021년 6월 19일
What is the conversion to real time from those timestamps?
And is there another repository for the data still that might have the full precision instead of having been written to the csv file with limited significant digits? That'd be the cat's meow to be able to do it as would want ideally...

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by