Select a random element of a vector and use randi command
Mostra commenti meno recenti
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?
Risposte (1)
KSSV
il 1 Mar 2021
A = magic(5) ;
A = A(:) ;
N = numel(A) ;
idx = randi(N,1) ;
A(idx) = rand
1 Commento
Eric Junaeus
il 2 Mar 2021
Modificato: Eric Junaeus
il 2 Mar 2021
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!