Difficult matlab question, working with arrays.
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nick Haufler
le 30 Sep 2015
Modifié(e) : Image Analyst
le 30 Sep 2015
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:
0 commentaires
Réponse acceptée
Image Analyst
le 30 Sep 2015
Modifié(e) : Image Analyst
le 30 Sep 2015
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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!