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 Center および File ExchangeNumerical Integration and Differential Equations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by