How I sum to matrix wich one is the mean of the value and the other the standard deviation?
1 回表示 (過去 30 日間)
古いコメントを表示
you certainly know that a value in order to be defined correctly it must be defined by its mean plus or minus its standard deviation:
VALUE= MEAN ± STANDARD DEVIATION
Now, I have a matrix for the mean (meanbasket) and a matrix for the standard deviation (devstdbasket).
How can I obtain the matrix of the value?
0 件のコメント
採用された回答
Matt J
2021 年 9 月 30 日
I this what you mean?
[m,n]=size(meanbasket);
value=meanbasket+randn([m,n]).*devstdbasket;
2 件のコメント
Matt J
2021 年 9 月 30 日
It's not at all clear what you're trying to calculate. If you're just trying to compute the upper and lower bounds mentioned in your original post, then you obviously know already what operations are required because you yourself posted equations for them.
upperBound=meanbasket+devstdbasket;
lowerBound=meanbasket-devstdbasket;
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!