How to split a matrix
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How can I split a 1200X2 matrix into three serial 400X2 matrices?
0 Commenti
Risposte (1)
Fangjun Jiang
il 24 Mag 2018
A=reshape(1:24,12,[]);
B1=A(1:4,:)
B2=A(5:8,:)
B3=A(9:12,:)
C=mat2cell(A,[4,4,4],2);
C{1}
C{:}
0 Commenti
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!