필터 지우기
필터 지우기

Difficult matlab question, working with arrays.

조회 수: 4 (최근 30일)
Nick Haufler
Nick Haufler 2015년 9월 30일
편집: Image Analyst 2015년 9월 30일
In the attached question it talks about determining if the outcome of the dice rolls is a pair, three, four or five of a kind. How would you do that, would you make a vector, and then use if statements. I included my script for you to look at:

채택된 답변

Image Analyst
Image Analyst 2015년 9월 30일
편집: Image Analyst 2015년 9월 30일
Nick, take a look any() and your own histogram, "counts", and check if any of the bins have 3 or 4 in them.
if any(counts == 3)
elseif any(counts == 4)
elseif any(counts == 5)
end
There are other ways also. I'm not sure why you took counts out of the loop but you'll have to put it back in.

추가 답변 (0개)

카테고리

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