필터 지우기
필터 지우기

one column in to multiple column

조회 수: 4 (최근 30일)
Amila
Amila 2022년 10월 7일
편집: Image Analyst 2022년 10월 8일
I have a .mat data file (results.mat). The first five columns are the date and time like yyyy, mm,dd,mm.
The 12th column has the data I need Results(:,12).
I wanted to use date (dt4) to split the column in to multiple columns:
dt4 =datetime(Results(:,1),Results(:,2), Results(:,3),0,0,0);
I tried to use
newtable = reshape(Results(:,12), 157, []);
then I realized that some days have different amount of data.
I want the date as column name. Could you kindly help me? I am new to MATLAB.
  댓글 수: 1
Image Analyst
Image Analyst 2022년 10월 8일
편집: Image Analyst 2022년 10월 8일
You forgot to attach results.mat!
Perhaps use addvars.
If you have any more questions, then attach your data and code to read it in with the paperclip icon after you read this:

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

답변 (1개)

dpb
dpb 2022년 10월 8일
It's not possible to have a table with different number or rows by variable(column); MATLAB is NOT a spreadsheet (which is agoodthing™).
It is also generally better to keep data as fields and use the field values as grouping or selection variables than to break up into different variables and then have to try to recombine to do something with.
Attach the data as a .mat file and describe what you're trying to accomplish and somebody's bound to have a way to approach it "the MATLAB way".

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by