필터 지우기
필터 지우기

can FOR and WHILE loop combined together?

조회 수: 9 (최근 30일)
farhah muhammad
farhah muhammad 2022년 1월 26일
댓글: farhah muhammad 2022년 4월 11일
HI,
im trying to do coding to reveal the stage, for example:
sum of urine output is less than 0.5 ml/hr from 6-12 hours = category 1
sum of urine output is less than 0.5 ml/hr from 12 hours and above = category 2
sum of urine output is less than 03 ml/hr from 24 hrs and above = category 3.
is this correct?
sumUO = 0;
while PatientStruct.Urine (i) >= 24
aki_stage = 0;
sumUO = sumUO + PatientStruct.Urine(i);
while PatientStruct.Urine (i) >= 12
sumUO = sumUO + PatientStruct.Urine(i);
aki_stage = 0;
if sumUO < 0.5
aki_stage = aki_stage + 2;
return;
end
end
if sumUO < 0.3
aki_stage = aki_stage + 3;
return;
end
AKI_stageUO (i,1) = aki_stage;
end
thank you in advanced!
  댓글 수: 2
Geoff Hayes
Geoff Hayes 2022년 1월 26일
@farhah muhammad - I think you need to discuss the structure of your data. Do you have results for each hour? Is that what i represents, an hour (note this variable never changes...)?
farhah muhammad
farhah muhammad 2022년 1월 27일
Yes, I have result for every hour, but it depends on patients, it could be data for 48 hours, 36 hours or until the patients discharge from the ward. tq

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

답변 (1개)

Esha Chakraborty
Esha Chakraborty 2022년 4월 8일
Hi Farhah,
I understand that you want to know whether for and while loop can be combined.
Yes, you can nest the while loop inside the for loop. I will suggest you to use for loop for iterations of the range of time and while loop for the urine output.
You can refer to this similar example in the link below for further insights:
  댓글 수: 1
farhah muhammad
farhah muhammad 2022년 4월 11일
thank you for your help! yes, it works! ;)

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

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by