필터 지우기
필터 지우기

Subscripted assignment dimension mismatch.

조회 수: 1 (최근 30일)
tahseen alshmary
tahseen alshmary 2018년 11월 16일
댓글: tahseen alshmary 2018년 11월 25일
I have this error
((Subscripted assignment dimension mismatch))
appear with this function
for i=1:50
f0(i,1)=ofun(x0(i,:));
end
how can i solve this problem?

채택된 답변

madhan ravi
madhan ravi 2018년 11월 16일
편집: madhan ravi 2018년 11월 16일
f0=cell(1,50); %preallocation
for i=1:50
f0{i}=ofun(x0(i,:));
end
celldisp(f0)
  댓글 수: 3
madhan ravi
madhan ravi 2018년 11월 16일
Anytime :)
tahseen alshmary
tahseen alshmary 2018년 11월 25일
Dear sir also appear same error with this equation in same code
((Subscripted assignment dimension mismatch))
do you have solution for this equation
ffmin(ite,run)=fmin;
the code is
% evaluating fitness
f=cell(1,50); %preallocation
for i=1:n
f{i}=ofun(x(i,:));
end
% updating pbest and fitness
for i=1:n
if f{i}<f0{i}
pbest(i,:)=x(i,:);
f0{i}=f{i};
end
end
[fmin,index]=min(f0{i});
% finding out the best particle
ffmin(ite,run)=fmin; % storing best fitness

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

추가 답변 (0개)

카테고리

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

제품


릴리스

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by