Random integer numbers using random function
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
KnowledgeSeeker
el 10 de Feb. de 2014
Comentada: KnowledgeSeeker
el 10 de Feb. de 2014
Hi, I am trying to obtain 9 random integer numbers and want them to be appeared in this form
expectedoutpt = '989898989' '897676767'
any suggestion?
0 comentarios
Respuesta aceptada
Mischa Kim
el 10 de Feb. de 2014
Something like:
function ri = rnum()
ri = num2str(randi([1,9],1,9));
ri = ri(~isspace(ri));
end
Más respuestas (1)
Jos (10584)
el 10 de Feb. de 2014
Two strings of 9 random digits between 1 and 9 each (no 0?), stored in a row cell(?) array?
S = cellstr(char('0' + ceil(9*rand(2,9)))).'
Ver también
Categorías
Más información sobre Random Number Generation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!