Nested for loop not iterating

조회 수: 1 (최근 30일)
Brenton Hirao
Brenton Hirao 2019년 10월 10일
댓글: per isakson 2019년 10월 10일
I have a nested for loop needed to do a gridsearch to do a linear fit of a model with two unknown constants. As far as I can tell, these for loops are not iterating because i and j both show a value of 1 in the workspace. What am I doing wrong?
Thanks for any help.
agrid=[1:0.1:100];
bgrid=[.5:.0001:1.5];
lenagrid=length(agrid);
lenbgrid=length(bgrid);
for i = 1:lenagrid
for j = 1:lenbgrid
a_p = agrid(i)
b_p=bgrid(j);
fhat(i,j)=(a_p(i))-(b_p(j)).*magrange;
TSE(i,j)=sum((fhat-magrange).^2);
end
end
  댓글 수: 2
Daniel M
Daniel M 2019년 10월 10일
You're trying to access the jth element of b_p, but it is only length 1.
per isakson
per isakson 2019년 10월 10일
Was there an error message? What did it say?

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

답변 (1개)

per isakson
per isakson 2019년 10월 10일
I'm just guessing. Replace
a_p = agrid(i)
b_p=bgrid(j);
fhat(i,j)=(a_p(i))-(b_p(j)).*magrange;
by
fhat(i,j) = ( agrid(i) - bgrid(i) ).*magrange;

카테고리

Help CenterFile Exchange에서 Loops and Conditional Statements에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by