Varying Random Number Generator between a Range

1 回表示 (過去 30 日間)
Chris Dan
Chris Dan 2020 年 9 月 3 日
コメント済み: Chris Dan 2020 年 9 月 3 日
Hello,
I am trying to vary a random number generator between a range of vectors, this is my code
ub =[1;1;2;2;2;2;2;2;2;2];
lb =[0.95;0.96;1.88;1.88;1.85;1.85;1.75;1.75;1.65;1.58]
Y = lb + (ub-lb).*rand(10,1)
The result I am getting is a 10x4 double matrix, I want a 10x1 vector.
What changes I should make?

回答 (1 件)

KSSV
KSSV 2020 年 9 月 3 日
lb = [750,150,8,8];
ub = [850,250,15,15];
%
id1 = randperm(length(lb),1) ; % select 1 lb randomly
id2 = randperm(length(ub),1) ; % select 1 ub randomly
Y = lb(id1) + (ub(id2)-lb(id1))*rand(10,1)
  6 件のコメント
Bruno Luong
Bruno Luong 2020 年 9 月 3 日
Great so now what is the size of Y?
You just answer your own question I think.
Chris Dan
Chris Dan 2020 年 9 月 3 日
yeap, I guess :)

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

カテゴリ

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

製品


リリース

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by