How to find maximum value for 3 iterative variables.

In this i have to do following operation mentioned:
Here value of a,b,z are changing continuously. For every value program will calculate value of 'y'.
It will become three dimensional array.
For entire these iterations i have to find out maximum value of 'y' and corresponding value of 'a' & 'b'.
I am facing one more problem, when i formulated array it was showing lot more zeros.
for p=1:6
a=2*p;
for q=1:6
b=5*q;
for z=1:100
k=z*z;
x=k*4+1;
y=a*x+b*k+1;
y(p,q,z)=y;
end
end
end

댓글 수: 6

Your statement y=a*x+b*k+1; is completely overwriting any previous value of the variable "y", including the use of "y" as an array from the previous iteration of the very next line.
Shantanu K
Shantanu K 2013년 3월 7일
편집: Shantanu K 2013년 3월 7일
Thanks Walter, can you guide me in finding the maximum value of 'y' & corresponding 'a' & 'b' values
"y" cannot be simultaneously a scalar and an array. You need to use a different name for one of the two. Or just skip the temporary variable and use
y(p,q,z) = a*x + b*k + 1;
p=0;
q=0;
z=0;
for p=1:6
for q=1:6
for z=1:100
a=2*p;
b=5*q;
k=z*z;
x=k*4+1;
y(p,q,z)=a*x+b*k+1;
end
end
end
How to find maximum value of 'y' and get corresponding value of 'p' and 'q'?
Do you want the 'a' and 'b' (as you wrote the first time) or the 'p' and 'q' (as you write now) ?
Thanks Walter for your help !

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

 채택된 답변

Andrei Bobrov
Andrei Bobrov 2013년 3월 7일
편집: Andrei Bobrov 2013년 3월 7일
max1 = [-inf 0 0 0];
for p=1:6
for q=1:6
for z=1:100
a=2*p;
b=5*q;
k=z*z;
x=k*4+1;
k1 = a*x+b*k+1;
y(p,q,z) = k1;
if k1 > max1(1), max1 = [k1,p,q,z]; end
end
end
end

댓글 수: 2

Re-using the variable "k" could be confusing to me.
Oh! Typo, thank you, Walter!
Corrected.

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

추가 답변 (1개)

Walter Roberson
Walter Roberson 2013년 3월 7일
Before loop:
maxy = -inf;
a_at_max = -inf;
b_at_max = -inf;
then inside the loop, where you assign into y, test to see if the new value is greater than maxy, and if it is, record the a and b values

댓글 수: 2

I am not able to understand it sir, can you please elaborate?
then inside the loop, where you assign into y, test to see if the new value is greater than maxy, and if it is, record the a and b values This part i am not able to convert to program.
if y(p,q,z) > maxy
%then update your record of which "a" and "b" values led to this maximum
end
Oh yes and remember to update maxy with the new maximum as well.
Hint: "update" means "do an assignment to"

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

카테고리

도움말 센터File 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