Create table from data
1 回表示 (過去 30 日間)
古いコメントを表示
Hi
I'm trying to extract some data (A1-4) and place it into a table. I get the error message "Error using vertcat - Dimensions of arrays being concatenated are not consistent." Can you advise what this is and how I can fix it?
The overall script the below code is from is more complex. The purpose of it is to extract data from a large number of statistical tests from multiple subjects and place the data in one table. When I run the script on one file (one subject and one test) I get the same error message. When I remove T1-4 from within the [ ] below and run it on one file then the table comes out fine. However, if I do that with all my files in a loop then the table comes out empty. For the one file I tested it on; A1-3 are 1x94 double and A4 is 1x94 cell.
T1 = [T1; A1]';
T2 = [T2; A2]';
T3 = [T3; A3]';
T4 = [T4; A4]';
T = table(T4, T1, T2, T3)
13 件のコメント
Adam Danz
2021 年 1 月 13 日
I copied the comment I think you're referencing to the answers section. Thanks for keeping the forum tidy!
採用された回答
Adam Danz
2021 年 1 月 13 日
Summary of comments under the question,
Instead of initializing T as an empty cell, use an empty table.
T = table();
A1 = array2table(rand(3,3));
C = [T,A1]
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Cell Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!