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