can a random number generator be used in a matrix?
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Aidan Palermo
le 9 Déc 2021
Commenté : Star Strider
le 9 Déc 2021
I'm trying to make a minesweeper game in matlab so I set up a matrix A=zeros(10) and I wanted to know if I could write the code so that 1s will be randomly scattered throughout the matrix whenever the code is run.
0 commentaires
Réponse acceptée
Star Strider
le 9 Déc 2021
3 commentaires
Steven Lord
le 9 Déc 2021
Do you want a certain probability of each cell being a mine or do you want a certain fixed number of mines? In the latter case, use randperm to identify a few locations where the mines are located then fill in those locations with linear indexing.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Random Number Generation 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!