how to random value?

2 ビュー (過去 30 日間)
Tia
Tia 2013 年 4 月 3 日
how to random value 2 until 3? example:
>> a=rand(1)
a =
0.8833
but i want the answer 2,3 or 2,5 or 2,6, or 3. thanks

回答 (2 件)

Azzi Abdelmalek
Azzi Abdelmalek 2013 年 4 月 3 日
編集済み: Azzi Abdelmalek 2013 年 4 月 3 日
n=3
a=rand*n %
  2 件のコメント
Tia
Tia 2013 年 4 月 3 日
it doesn't work. the answer still 1 commas until 3. i want the answer's between 2 to 3
Azzi Abdelmalek
Azzi Abdelmalek 2013 年 4 月 3 日
Then use
a=rand+2

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


Mahdi
Mahdi 2013 年 4 月 3 日
編集済み: Mahdi 2013 年 4 月 3 日
Generate values from the uniform distribution on the interval [a, b].
r = 2 + (3-2).*rand(1);
or the general form
r=a+(b-a).*rand(n);

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by