How to generate random numbers 0 and 1
Show older comments
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
Accepted Answer
More Answers (2)
Michael Haderlein
on 30 Jan 2015
e.g.
randi(2)-1
or
fix(rand*2)
Best regards,
Michael
3 Comments
shruthi m
on 30 Jan 2015
Michael Haderlein
on 30 Jan 2015
randi(2,n,1)-1
or
fix(rand(n,1)*2)
Kamal yahya
on 27 Feb 2020
grid=fix(randi([0 1],100));
imtool(grid)
Nawaf Alharbi
on 10 Sep 2018
1 vote
r=randi(2,n,1)-1
Categories
Find more on Random Number Generation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!