White blood cells are classified into 5 categories, one of which is neutrophil cells. Typically, there are 100 cells that fall into these categories. For a healthy adult the probability of finding neutrophils is 0.6. Determine the probability that a healthy adult will find between 50 and 75 (inclusive) cells.

댓글 수: 1

Sirbu Robert
Sirbu Robert 2022년 1월 11일
편집: Sirbu Robert 2022년 1월 11일
Is there anyone to help me please, how i can i solve this in Matlab...
Please...

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

 채택된 답변

Image Analyst
Image Analyst 2022년 1월 11일
Did you want to do it via a Monte Carlo simulation, or via built-in functions? If you want a Monte Carlo simulation, here is a start.
numTrials = 500000;
numCells = 100;
for k = 1 : numTrials
r = rand(numCells, 1) < 0.6;
numCellsThisTrial(k) = sum(r);
end
histogram(numCellsThisTrial)
grid on;
ylabel('Number of images');
xlabel('Count per image')
Hopefully you can take it from there.

댓글 수: 2

Sirbu Robert
Sirbu Robert 2022년 1월 11일
Via Monte Carlo, and why did you put numTrials=50000?
Sirbu Robert
Sirbu Robert 2022년 1월 11일
And what is the probability that a healthy adult has beetwen 50-75 neutrophil cells, numeric value???

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Monte-Carlo에 대해 자세히 알아보기

제품

릴리스

R2021a

질문:

2022년 1월 11일

댓글:

2022년 1월 11일

Community Treasure Hunt

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

Start Hunting!

Translated by