While Loop, with a user made function

조회 수: 4 (최근 30일)
James Wilson
James Wilson 2021년 4월 22일
댓글: David Hill 2021년 4월 22일
I am trying to create a while loop that compares the output of a function that is perviously in the script code to a loaded martix. I am trying to use a variable to account for the amount generators producing the power. Both usage matrix and the T_Energy martix are the same size.
Gen = 1;
T_Energy = Gen*Energy_Out;
while T_Energy < usage
T_Energy = Gen*Energy_Out;
Gen = Gen + 1;
end
Once the code is ran, the Gen value still stays at 1, and it doesn't look like the martices are compared.

채택된 답변

Steven Lord
Steven Lord 2021년 4월 22일
From the documentation for the while keyword: "while expression, statements, end evaluates an expression, and repeats the execution of a group of statements in a loop while the expression is true. An expression is true when its result is nonempty and contains only nonzero elements (logical or real numeric). Otherwise, the expression is false."
So if your condition is nonempty and nonscalar, for the body of the while statement to execute all the elements of the condition must be true.
while [1 2] < 1.5
disp("Yes!")
end
Nothing gets displayed by that code. While 1 is less than 1.5, 2 is not. If you want the condition to be considered satisfied if any of the elements of the condition are true:
iter = 0;
while any([1 2] < 1.5) & iter < 5
disp("Yes!")
iter = iter + 1;
end
Yes! Yes! Yes! Yes! Yes!
I added the iter variable so this wasn't an infinite loop.

추가 답변 (2개)

Walter Roberson
Walter Roberson 2021년 4월 22일
while TEST
is the same as
while all(reshape(TEST, [], 1))
In other words it is considered false if there is even one entry in TEST that is 0.
Your condition is true for some elements of it but false for other elements of it, and while stops at the first false.

David Hill
David Hill 2021년 4월 22일
You will need to figure out how you want to compare the maxtrices, less than (<) compares element-to-element producing a logical matrix the same size. When you apply the if statement, it only looks at the first element of the logical matrix. You could sum all elements and compare, but I don't know what you want.
if sum(T_Energy,'all')<sum(usage,'all')
  댓글 수: 2
Walter Roberson
Walter Roberson 2021년 4월 22일
When you apply the if statement, it only looks at the first element of the logical matrix.
Not true!
itercount = 0;
while [true, false]
disp('got here')
itercount = 0
break
end
disp(itercount)
0
If it only looked at the first element, then it would have done the body.
David Hill
David Hill 2021년 4월 22일
Thanks, I should have tested that hypotheses.

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

카테고리

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