Is there any way to create array of arrays or matrix of matrices?

141 ビュー (過去 30 日間)
Isee You
Isee You 2013 年 5 月 15 日
i want to create array of arrays or matrix of matrices?
or
create arrays automatically in{ for - loop} then combine them in one array .

採用された回答

Jan
Jan 2013 年 5 月 16 日
Arrays can contain all types of Matlab variables as elements, but no arrays.
A "matrix of matrices" can be seen as 4D array:
a = zeros(2, 2, 3, 4);
a(:, :, 1, 1) = rand(2, 2);
etc.
Or with a loop:
for i1 = 1:3
for i2 = 1:4
a(:, :, i1, i2) = rand(2, 2);
end
end
  6 件のコメント
Jan
Jan 2013 年 5 月 17 日
@aboomnea: Is the original problem solved?
Isee You
Isee You 2013 年 5 月 17 日
thanks very much @jan-simon:
it solve my problem

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrices and Arrays についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by