pre allocating vector for loop

조회 수: 1 (최근 30일)
Oday Shahadh
Oday Shahadh 2020년 6월 12일
댓글: Oday Shahadh 2020년 6월 12일
Can any one tell how to pre allocate c1?
thanks
for ii = 1:length(a11);
c1=cross(L1(1,:),a11(ii,:));
end

채택된 답변

madhan ravi
madhan ravi 2020년 6월 12일
c1 = cell(numel(a11),1); % before loop use numel instead of length
c1{ii} = ... inside loop
  댓글 수: 5
Oday Shahadh
Oday Shahadh 2020년 6월 12일
Then Madhani how can I switch all these cell arrays to ( n,3) matrix
Oday Shahadh
Oday Shahadh 2020년 6월 12일
cell2mat

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by