How do I add an array to a table?

110 visualizaciones (últimos 30 días)
Mariana
Mariana el 15 de Dic. de 2019
Comentada: Adam Danz el 16 de Dic. de 2019
I already tried the matlab function arratotable. The error that I have is that the array is not of the same dimension of the table. How can I fix this problem ?

Respuesta aceptada

Adam Danz
Adam Danz el 15 de Dic. de 2019
Editada: Adam Danz el 16 de Dic. de 2019
If you're adding a new column of data to an existing table, the column must have an equal number of elements as all other columns of data in the table. One way of achieving that is by padding the shorter column(s) with NaN values (or some other default value).
Often times it's easiest just to pad values to the end of a column using [x; NaN(sz)] but there are functions that may come in handy such as B = padarray(A,padsize,padval).
If you have any problems implementing this method, show us your code and we can help straighten it out.
  5 comentarios
Image Analyst
Image Analyst el 16 de Dic. de 2019
What is the size of the array? And of the table you expect to get?
Do you want to split up the array so that each column or row goes into one column of the table? Like you have an N-by-3 matrix and want each column of that to go into individual columns of the table.
OR do you want to have each element of the table contain the complete array, for example row 1, column 2 (or whatever) contains a 3-row-by-5 column matrix, and all other rows in that column 2 would also contain other 3x5 matrices as well? (Similar to what the example in the help shows for blood pressure.)
Adam Danz
Adam Danz el 16 de Dic. de 2019
"Do you know how to make the sum of a value from a table and another in a cell array?"
This isn't clear to me. Could you give an example?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

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

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by