how to define matirx series?

1 Ansicht (letzte 30 Tage)
Yufei Cao
Yufei Cao am 25 Mär. 2022
Beantwortet: Arif Hoq am 25 Mär. 2022
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.

Antworten (1)

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

Kategorien

Mehr zu Numerical Integration and Differential Equations finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by