pre allocating vector for loop
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Oday Shahadh
il 12 Giu 2020
Commentato: Oday Shahadh
il 12 Giu 2020
Can any one tell how to pre allocate c1?
thanks
for ii = 1:length(a11);
c1=cross(L1(1,:),a11(ii,:));
end
0 Commenti
Risposta accettata
madhan ravi
il 12 Giu 2020
c1 = cell(numel(a11),1); % before loop use numel instead of length
c1{ii} = ... inside loop
5 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical 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!