Table - Write results in a new rows

4 visualizaciones (últimos 30 días)
Mepe
Mepe el 28 de Mzo. de 2019
Respondida: madhan ravi el 28 de Mzo. de 2019
From a measurement, only certain values should be written in a matlab table.
These should be written successively in new rows ob the table.
Whats the best way to do this?

Respuestas (2)

StefBu
StefBu el 28 de Mzo. de 2019
Editada: StefBu el 28 de Mzo. de 2019
Hi, you can create a cell array and then add a new row to your table by concatenation.
For example if your table variables are double and you have 4 variables in total. now if you want to add a row with 9999 each try this.
newRow = {9999, 9999, 9999, 9999};
Table = [Table; newRow];
Greetings
Stefan

madhan ravi
madhan ravi el 28 de Mzo. de 2019
doc array2table

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