Create a matrix using rand function with a value range

9 ビュー (過去 30 日間)
Ashfaq Ahmed
Ashfaq Ahmed 2021 年 10 月 28 日
コメント済み: Steven Lord 2021 年 10 月 28 日
Hi all, how can I create a 50x50 matrix using Random (rand) function while the condition is all the values of the matrix will be in between 0 to 0.004?

採用された回答

Stephen23
Stephen23 2021 年 10 月 28 日
0.004*rand(50,50)
  2 件のコメント
Ashfaq Ahmed
Ashfaq Ahmed 2021 年 10 月 28 日
編集済み: Ashfaq Ahmed 2021 年 10 月 28 日
I am right now using this line: a = 0.004 + (0.004-0.000).*rand(50,50);
Steven Lord
Steven Lord 2021 年 10 月 28 日
That's almost correct. That's the syntax suggested in the "Random Numbers Within Specified Interval" example on the documentation page for the rand function but you're using a and b inconsistently.
You want to generate numbers with the lower limit a being 0 and the upper limit b being 0.004.
a = 0;
b = 0.004;
N = 10;
r = a + (b-a).*rand(N,1)
r = 10×1
0.0018 0.0005 0.0015 0.0001 0.0028 0.0025 0.0028 0.0026 0.0019 0.0024
checkInterval = all((a < r) & (r < b))
checkInterval = logical
1

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

その他の回答 (0 件)

カテゴリ

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