How do I add an array to a table?
71 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Adam Danz
2019 年 12 月 15 日
編集済み: Adam Danz
2019 年 12 月 16 日
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 件のコメント
Image Analyst
2019 年 12 月 16 日
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
2019 年 12 月 16 日
"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?
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!