Select a random element of a vector and use randi command
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
What command should I use to randomly select an element from a vector and give it a random number by using the randi command while also displaying the other elements in the workspace?
0 commentaires
Réponses (1)
KSSV
le 1 Mar 2021
A = magic(5) ;
A = A(:) ;
N = numel(A) ;
idx = randi(N,1) ;
A(idx) = rand
1 commentaire
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!