use rand in editor
Mostra commenti meno recenti
I was given a script to edit with the function "randi" in it, i have a older version of matlab R14. It worked on the latest version, curious if there is n easy conversion to fix this issue.
3 Commenti
Image Analyst
il 7 Apr 2012
Are you saying that you got a script with randi() in it from someone who uses R2012a, but you don't have randi() in your older version of MATLAB and so you want some code that does essentially the same thing?
David bondi
il 7 Apr 2012
David bondi
il 7 Apr 2012
Risposte (1)
Image Analyst
il 7 Apr 2012
You can define your own randi like this:
function out = randi(iMax, rows, columns)
out = int32(floor(iMax*rand(rows, columns) + 1));
Of course that is not as flexible in the types of input arguments that the real randi() accepts, but you can work on that if you want.
Categorie
Scopri di più su Creating, Deleting, and Querying Graphics Objects in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!