Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个大小为 20*20 的矩阵。我想把它分成两个大小为 20*10 的子矩阵。如果我使用以下代码:
e f=mat2cell(e,[10,10],[10,10]) celldisp(f)
我得到四个大小为 10*10 的子矩阵,如果我使用以下代码,我得到两个大小为 10*20 的矩阵。
e f=mat2cell(e,[10,10]) celldisp(f)
(其中 e 是我要拆分的矩阵)
我怎样才能得到两个大小为 20*10 的子矩阵?请帮忙。
请执行下列操作
f = mat2cell( e, 20, [10 10] );