While loop word problem
16 次查看(过去 30 天)
显示 更早的评论
I have the following word problem and am struggling to determine the arguments for the while loop. Any information is helpful!
Write a while loop that outputs the answer to the following question: Sally prepares two plates of 10 cells each. One plate has normal cells, and the other contains cells with a mutation believed to reduce the normal hourly reproduction rate by half. If the number of normal cells triples every hour, how many of each type of cell should be in the plates after 12 hours? Name the outputs total_normal and total_mutant.
2 个评论
采纳的回答
Jon
2020-9-30
You will need to add the details but you probably want to do something like this
% set some parameters
runHours = 12; % number of hours to run test for
normalRate = 3;
mutantRate = normalRate/2;
% initialize
hours = 0;
normal_total = 10;
mutant_total = 10;
% loop to let cells grow
while hours <= runHours % run until the final number of hours is reached
hours = hours + 1; % count up the hours
% compute new populations
normal_total = normal_total*normalRate;
mutant_total = mutant_total*mutantRate;
end
更多回答(0 个)
另请参阅
类别
在 Help Center 和 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!