Problem 1719. Dice face matrix!
This is dice simulator, but instead of making a random die number, you will receive an "pre-rolled" number in and spit out a matrix of 1 and 0 that looks like a dice face of the given number. So for example:
rollnum = 1;
Then the output will be:
diceFace =
0 0 0 0 1 0 0 0 0
Another example:
rollnum = 5;
Then the output will be:
diceFace =
1 0 1 0 1 0 1 0 1 And so on for 1-6, well that is it! Just note the 1 and 0 are numbers not char's or strings... Good luck!
Solution Stats
Problem Comments
-
1 Comment
Jean-Marie Sainthillier
on 20 Jul 2013
A lot of beautiful solutions.
Solution Comments
Show commentsProblem Recent Solvers108
Suggested Problems
-
Return the 3n+1 sequence for n
8271 Solvers
-
How to find the position of an element in a vector without using the find function
2728 Solvers
-
Back to basics 22 - Rotate a matrix
903 Solvers
-
Change the sign of even index entries of the reversed vector
553 Solvers
-
Convert a Cell Array into an Array
1714 Solvers
More from this Author17
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!