How to pick random number?
17 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi, Please forgive me if I am asking a basic question. I want to pick random number from the set {2,3}. It should either pick 2 or 3 randomly. I have been looking at these functions called 'rand', 'randi', 'randperm' etc., but i couldn't figure out how to use them for my problem. Any help would be appreciated.
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 2 Ott 2013
Modificato: Azzi Abdelmalek
il 2 Ott 2013
randi([2 3])
%or
v=[2 3];
v(randi(2))
3 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!