what is “rando” command in matlab

1 回表示 (過去 30 日間)
Jay Hanuman
Jay Hanuman 2016 年 10 月 17 日
編集済み: John D'Errico 2016 年 10 月 17 日
If I enter matrix in a matlab and run command rando(a) then it shows sometimes 3 and sometimes 2. if I change element values of matrix a then also rando(a) shows sometimes 3 and sometimes 2. so what is this command.
  1 件のコメント
Adam
Adam 2016 年 10 月 17 日
編集済み: Adam 2016 年 10 月 17 日
rando is not a builtin Matlab command so presumably it is your own function.

サインインしてコメントする。

回答 (3 件)

John D'Errico
John D'Errico 2016 年 10 月 17 日
編集済み: John D'Errico 2016 年 10 月 17 日
There is NO rando function in MATLAb. Perhaps you have obtained it from someone else.
You have several options.
1. You can look at the code.
2. You can call for help on rando.
If the author has done a good job, they will have provided help.
help rando
3. You can contact the source. Somebody wrote the code. So ask them.
4. Finally, perhaps you intended to write randi.
In that case, READ THE HELP.

Image Analyst
Image Analyst 2016 年 10 月 17 日
Type
>> which rando
To see where it lives. To edit/open it and see what it does, type
>> edit rando.m

Walter Roberson
Walter Roberson 2016 年 10 月 17 日
" Matlab program files for Math 445/545 Applied probability"
"rando.m generates a random variable in {1, 2, ..., n} given a distribution vector."

カテゴリ

Help Center および File ExchangeNumeric Types についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by