how to define matirx series?

1 次查看(过去 30 天)
Yufei Cao
Yufei Cao 2022-3-25
回答: Arif Hoq 2022-3-25
Dear community,
I want to define a matirx series whose each element is a matirx. For example,
a1 = randn(2,2);
a2 = randn(2,2);
a3 = randn(2,2);
...
an = randn(2,2);
I want to define
c = [a1, a2, a3, ..., an];
But the operator [] returns a combined matrix.

回答(1 个)

Arif Hoq
Arif Hoq 2022-3-25
square bracket returns horizontal concatenation of input argument. i guess you can use a cell array
c = {a1,a2,a3};

类别

Help CenterFile Exchange 中查找有关 Numbers and Precision 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by