Borrar filtros
Borrar filtros

one column in to multiple column

4 visualizaciones (últimos 30 días)
Amila
Amila el 7 de Oct. de 2022
Editada: Image Analyst el 8 de Oct. de 2022
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 comentario
Image Analyst
Image Analyst el 8 de Oct. de 2022
Editada: Image Analyst el 8 de Oct. de 2022
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:

Iniciar sesión para comentar.

Respuestas (1)

dpb
dpb el 8 de Oct. de 2022
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".

Categorías

Más información sobre Logical en Help Center y File Exchange.

Productos


Versión

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by