Call a matrix in a matrix

1 次查看(过去 30 天)
Ellen
Ellen 2014-2-3
评论: Ellen 2014-2-3
Can you define a matrix A (3x6) consisting of matrices B (3x3) and C (3x3) and then call these in such a way that
A = [ B ; C ]
A (1) = B and A (2) = C
Or will you always have to write A(1:3,:) to get B?

采纳的回答

Amit
Amit 2014-2-3
编辑:Amit 2014-2-3
You can have cell like this:
B = rand(3);
C = rand(3);
A{1} = B;
A{2} = C;

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by