Select a random element of a vector and use randi command
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?
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
Eric Junaeus
le 2 Mar 2021
Modifié(e) : Eric Junaeus
le 2 Mar 2021
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!