Combine vectors of different length into a matrix and perform ANOVA.

6 ビュー (過去 30 日間)
NMarco
NMarco 2021 年 1 月 18 日
コメント済み: Adam Danz 2021 年 1 月 18 日
Hello,
I have 20 vertical vectors all of different lenghts.
a = 1x876;
b = 1x900;
c = 1x852;
...
y = 1x798;
I'd like to merge them into a single matrix in which each column is one vector (n x 20) and then perform an ANOVA.
Unfortunately a cannot combine vectors of different lenght in one matrix. Is there a way to fill in the empty spaces with a NaN value (probably taking the lenght of the longest one)?
Or maybe there are other methods of which I have no knowledge to perform an ANOVA listing all the variable to be taken into account?
Thank you!

採用された回答

Adam Danz
Adam Danz 2021 年 1 月 18 日
編集済み: Adam Danz 2021 年 1 月 18 日
The dimensions you provided indicate that the vectors are row vectors, not column vectors.
If you're performing a 1-ways ANOVA using anova1, you don't have to create a matrix. Use the grouping variable instead. For row vectors,
y = [a,b,c,d];
group = repelem(1:4, 1, [numel(a),numel(b),numel(c),numel(d)])
To answer your original question, pad arrays using B = padarray(A,padsize).
  4 件のコメント
Adam Danz
Adam Danz 2021 年 1 月 18 日
編集済み: Adam Danz 2021 年 1 月 18 日
The error is because you forgot the square brackets that group the second input.
repelem(A, N1, N2, ..., Nn)
should probably be
repelem(A, [N1, N2, ..., Nn])
assuming row vector inputs.
Adam Danz
Adam Danz 2021 年 1 月 18 日
Sounds like you figured it out. Glad I could help.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeANOVA についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by