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일

0 개 추천

c1 = cell(numel(a11),1); % before loop use numel instead of length
c1{ii} = ... inside loop

댓글 수: 5

Oday Shahadh
Oday Shahadh 2020년 6월 12일
c1 = cell(numel(a11),1);
madhan ravi
madhan ravi 2020년 6월 12일
I don’t see the difference?
Oday Shahadh
Oday Shahadh 2020년 6월 12일
Sorry what is hapening here?
I just commented " Madhani you are professional as usual'
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개)

카테고리

도움말 센터File Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

질문:

2020년 6월 12일

댓글:

2020년 6월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by