Matlab equivalent of rand() in C++

9 次查看(过去 30 天)
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 个评论
Walter Roberson
Walter Roberson 2021-4-17
no. randi(6) would be 1 to 6, but random integer mod 6 would be 0 to 5. You can randi([0 5])
Rishi Balasubramanian
Ah, wow, that would have been a crucial error. Thanks for pointing it out man.

请先登录,再进行评论。

采纳的回答

Bruno Luong
Bruno Luong 2021-4-17
编辑:Bruno Luong 2021-4-17
random4 = randi(item)-1

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by