obtaining values major than 10e-7

3 ビュー (過去 30 日間)
Salvatore Mazzarino
Salvatore Mazzarino 2012 年 9 月 15 日
I use rand function to generate values
x = rand;
after that I compared generated values to
10e-7
if x > 10e-7
do something
end
unfortunately rand generates values always bigger 10e-7. How can I generate values that are less than 10e-7 using rand function?
  1 件のコメント
Jan
Jan 2012 年 9 月 15 日
編集済み: Jan 2012 年 9 月 15 日
Do you mean 10e-7, which is 1e-6? The reply of RAND is not always greater than 1e6, but the chance to get a smaller value is 1 to 1e6. Try:
x = rand(1,1e7);
sum(x < 1e-6)

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

回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2012 年 9 月 15 日
x = rand*10e-7
  3 件のコメント
Azzi Abdelmalek
Azzi Abdelmalek 2012 年 9 月 15 日
編集済み: Azzi Abdelmalek 2012 年 9 月 15 日
x = 2*rand*10e-7
%you will have randomly > or <
Salvatore Mazzarino
Salvatore Mazzarino 2012 年 9 月 15 日
yes...now it work...thanks so much Azzi

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

カテゴリ

Help Center および File ExchangeSignal Processing Toolbox についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by