Error: Unable to perform assignment because the left and right sides have a different number of elements.

조회 수: 1 (최근 30일)
I am unable to get this for loop working for some reason, I know it is in line 28 but not sure. Thanks for any help.

채택된 답변

fred  ssemwogerere
fred ssemwogerere 2020년 2월 13일
편집: fred ssemwogerere 2020년 2월 13일
You are using a double for loop. I advise its best to use something like this
for ii=1:24
for jj=1:24
z(ii,jj)=normrnd(mu_SC(ii),std_SC(jj),1000);
end
end
  댓글 수: 3
fred  ssemwogerere
fred ssemwogerere 2020년 2월 13일
Hello, from your question i think you are tring to generate a 1000x1000 array of normal random numbers, then in that case you can use cell notation, with curly brackets to the output as below:
for ii=1:24
for jj=1:24
z{ii,jj}=normrnd(mu_SC(ii),std_SC(jj),1000);
end
end
Stephen23
Stephen23 2020년 2월 13일
With preallocation to avoid inefficiency and some errors related to unmatching classes/types/sizes:
z = cell(24,24);
for ...
end

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by