Create a matrix where each element is a Binomial distribution

1 回表示 (過去 30 日間)
Orongo
Orongo 2017 年 10 月 11 日
コメント済み: dpb 2017 年 10 月 11 日
Hi, I want to create a matrix Y where each element is its own unique Binomial distribution. I want the parameters N and P be the matrices
N=normrnd(0,1,4,4)
P=rand(4,4)
So
Y(1,1)=Binornd(N(1,1),P(1,1)),
Y(2,2)=Binornd(N(2,2),P(2,2))
and so on. I use Binornd(N,P) which result in a 4x4 matrix filled with NaN. What is going wrong? and how can I create the matrix Y?
  1 件のコメント
dpb
dpb 2017 年 10 月 11 日
You're getting NaN because the first parameter of the binomial has to be positive integer for number of trials and you're passing a floating point value that is sampled from gaussian so is -inf,inf theoretical, -3,+3 in practical terms for 99+% of cases.
You also can't put multiple outputs into a single location of an array; you could use a cell array to hold the outputs, but not a double.

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

回答 (0 件)

カテゴリ

Help Center および File ExchangeDescriptive Statistics and Visualization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by