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 0Another 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
Solution Comments
Show comments
Loading...
Problem Recent Solvers137
Suggested Problems
-
What is the distance from point P(x,y) to the line Ax + By + C = 0?
560 Solvers
-
Number of 1s in a binary string
11446 Solvers
-
Create a matrix X, where each column is a shifted copy of the vector v
226 Solvers
-
How long do each of the stages of the rocket take to burn?
530 Solvers
-
6295 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!
A lot of beautiful solutions.