Error using rand Size inputs must be scalar.

16 ビュー (過去 30 日間)
Cesar Ramirez
Cesar Ramirez 2019 年 2 月 25 日
コメント済み: Cesar Ramirez 2019 年 2 月 25 日
Hi, I am trying to use rand , but Im getting erros Size inputs must be scalar.
I am almost new at matlab and was wonder how to fix that problem
D = 2 ;
g =1000;
sigma = 1;
for i=1:g
r = rand(0,sigma^2,[D 1]);
%...
end

採用された回答

Walter Roberson
Walter Roberson 2019 年 2 月 25 日
When you talk about sigma^2 you are talking about normal distribution (typically) not uniform distribution such as rand() produces.
I suspect you want to call normrnd() rather than rand() .
  3 件のコメント
Walter Roberson
Walter Roberson 2019 年 2 月 25 日
rand(0,1) means that you want an array with 0 rows and 1 columns .
Perhaps you want normrnd(0,1) ?
The code lines you are using are like what you would use to create a uniform random number in the range xl to xu . If you want to do that once for each member of r, then
xp = xl + (xu-xl) .* rand(size(r));
xh = xp + r;
Cesar Ramirez
Cesar Ramirez 2019 年 2 月 25 日
Thanks again ! haha

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2017b

Community Treasure Hunt

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

Start Hunting!

Translated by