Create table from data

5 次查看(过去 30 天)
DavidL88
DavidL88 2021-1-12
评论: Adam Danz 2021-1-13
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 个评论
DavidL88
DavidL88 2021-1-13
Thank you!
I wanted to accept your answer but can't see the option next to your comment?
Adam Danz
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
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]
C = 3x3 table
Var1 Var2 Var3 _______ _______ _______ 0.73391 0.42024 0.11362 0.81381 0.81976 0.94401 0.23762 0.68696 0.64335

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Tables 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by