Matlab equivalent of rand() in C++
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Rishi Balasubramanian
el 17 de Abr. de 2021
Comentada: Rishi Balasubramanian
el 17 de Abr. de 2021
Hello,
I am trying to adapt a C++ code to my Matlab project.
In C++ there is this line
random4 = rand() % item // Here the % is modulo in C++
So random is the range of values 'rand' modulo by variable 'item'.
How do I implement this in Matlab. Since I am looking for targeted platform and efficiency, I cannot call the Cpp file in matlab. I am looking for a matlab adaptation.
Any help or suggestions offered are much appreciated. Thank you in advance...
3 comentarios
Walter Roberson
el 17 de Abr. de 2021
no. randi(6) would be 1 to 6, but random integer mod 6 would be 0 to 5. You can randi([0 5])
Respuesta aceptada
Bruno Luong
el 17 de Abr. de 2021
Editada: Bruno Luong
el 17 de Abr. de 2021
random4 = randi(item)-1
0 comentarios
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!