Create a matrix where each element is a Binomial distribution
1 回表示 (過去 30 日間)
古いコメントを表示
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
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 Exchange で Descriptive Statistics and Visualization についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!