답변 (2개)

Image Analyst
Image Analyst 2022년 4월 9일
편집: Image Analyst 2022년 4월 9일

1 개 추천

Replace "and" by a double (not single) ampersand : &&
Get rid of lines 4 and 6. MATLAB does not have a "do" and does not start and end blocks with braces.
Your while loop doesn't seem to have any way to exit if it goes into it. How could soc and Ppv change if they're variables? If they're functions, then perhaps they could come back with different values each time, but they're not. They're either scalars or arrays (which is it?).
But there's also a problem in that your while has no failsafe - no limit on the number of iterations so you could get into an infinite loop situation. More robust code would be:
maxIterations = 100000; % Way more than you think you'd ever need.
loopCounter = 0; % The failsafe
while (soc < 80) && (Ppv > 4000) && loopcounter < maxIterations
u = 0;
% Then maybe some other code that changes soc or Ppv.
% Finally increment the loop counter.
loopCounter = loopCounter + 1;
end
if loopCounter >= maxIterations
warningMessage = sprintf('Loop exited early after %d iterations', loopCounter)
uiwait(warndlg(warningMessage));
end

댓글 수: 6

khalil chnini
khalil chnini 2022년 4월 9일
편집: khalil chnini 2022년 4월 9일
thnk you for answering
the output u is an order to run or break a genrator...
and soc is batterie's🔋 charge degree (it ll be charged by the generator)...
and Ppv is the power of photovoltaïque
so first u = 0 next change u = 1 when soc< 20% and Ppv < 4000 ....and it has to be fixed in 1 untel the batterie🔋charged (sos >80) or Ppv >4000
Image Analyst
Image Analyst 2022년 4월 9일
How does soc or Ppv ever get changed inside the loop?
khalil chnini
khalil chnini 2022년 4월 9일
w enter them as an input throu (go to ) block
Image Analyst
Image Analyst 2022년 4월 9일
OK, then you should break out of the loop if/when the criteria gets met.
khalil chnini
khalil chnini 2022년 4월 12일
편집: khalil chnini 2022년 4월 12일
how i do this
Image Analyst
Image Analyst 2022년 4월 12일
Somehow you are changing either soc or Ppv inside the loop. When the condition below
(soc < 80) && (Ppv > 4000) && loopcounter < maxIterations
is false, the loop will automatically exit. You said that you were getting those values inside the loop via asking the user with an input() statement, which is how I interpreted this: "w enter them as an input throu (go to ) block"

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

Karuppasamy Kalimuthu
Karuppasamy Kalimuthu 2022년 4월 9일

0 개 추천

and to be replaced by &

댓글 수: 3

John D'Errico
John D'Errico 2022년 4월 9일
Actually, no. You want to use && in an if statement. There is a difference.
Karuppasamy Kalimuthu
Karuppasamy Kalimuthu 2022년 4월 11일
Yes. && is correct.
Walter Roberson
Walter Roberson 2022년 4월 11일
Either & or && can be used when both sides are scalars, but && would be more efficient in such a case.
If the left side is non-scalar, or the left side is scalar non-zero and the right side is non-scalar, then & must be used instead of && .

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

카테고리

도움말 센터File Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

질문:

2022년 4월 9일

댓글:

2022년 4월 12일

Community Treasure Hunt

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

Start Hunting!

Translated by