How to generate random numbers 0 and 1

55 visualizzazioni (ultimi 30 giorni)
I need to generate random numbers 0 and 1,if i use randi(1) it will be in fraction. exactly i need to generate 0 and 1 randomly???pls help

Risposta accettata

Image Analyst
Image Analyst il 30 Gen 2015
Modificato: Image Analyst il 30 Gen 2015
Try
n = 10; % However many numbers you want.
randomNumbers = randi([0, 1], [1, n])
This will give a double. If you want integers, then cast to int32.
randomNumbers = int32(randi([0, 1], [1, n]));
or use logical() if you want booleans.

Più risposte (2)

Michael Haderlein
Michael Haderlein il 30 Gen 2015
e.g.
randi(2)-1
or
fix(rand*2)
Best regards,
Michael
  3 Commenti
Michael Haderlein
Michael Haderlein il 30 Gen 2015
randi(2,n,1)-1
or
fix(rand(n,1)*2)
Kamal yahya
Kamal yahya il 27 Feb 2020
grid=fix(randi([0 1],100));
imtool(grid)

Accedi per commentare.


Nawaf Alharbi
Nawaf Alharbi il 10 Set 2018
r=randi(2,n,1)-1

Categorie

Scopri di più su Random Number Generation in Help Center e File Exchange

Tag

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by