Select rows and put into cell array
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Setiadi Suriana
il 24 Mag 2019
Commentato: madhan ravi
il 24 Mag 2019
I have 10000 rows and I want separate into 10 cell arrays with
Array Row
Cell array 1: 1
11
21
31
and so on
Cell array 2: 2
12
22
32
and so on
Until Cell array 10
0 Commenti
Risposta accettata
KALYAN ACHARJYA
il 24 Mag 2019
A=rand(10000,5);
result=cell(1,10);
for i=1:1:10
result{i}=A(i:10:1000,:);
end
0 Commenti
Più risposte (1)
Raj
il 24 Mag 2019
A=rand(10000,10)
ii=1;
for jj=1:10
num=1;
for l=ii:10:10000
B(num,1:10)=A(l,1:10);
num=num+1;
end
C{jj}=B;
ii=ii+1;
end
Vedere anche
Categorie
Scopri di più su Resizing and Reshaping Matrices in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!