pre allocating vector for loop

1 vue (au cours des 30 derniers jours)
Oday Shahadh
Oday Shahadh le 12 Juin 2020
Commenté : Oday Shahadh le 12 Juin 2020
Can any one tell how to pre allocate c1?
thanks
for ii = 1:length(a11);
c1=cross(L1(1,:),a11(ii,:));
end

Réponse acceptée

madhan ravi
madhan ravi le 12 Juin 2020
c1 = cell(numel(a11),1); % before loop use numel instead of length
c1{ii} = ... inside loop
  5 commentaires
Oday Shahadh
Oday Shahadh le 12 Juin 2020
Then Madhani how can I switch all these cell arrays to ( n,3) matrix
Oday Shahadh
Oday Shahadh le 12 Juin 2020
cell2mat

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by