Probability of being under a target
2 ビュー (過去 30 日間)
古いコメントを表示
Hi,
I have a result variable X that is defined by an equation of random variables.
We used prctile to see the results we get with several probabilities, but now we need to known what is the probability that X is going to be under a certain value.
Is there any function that can give this?
One way I was thinking about doing this is to count the number of samples in the simulation where X is below the mark, but I don't known how to do this neither.
Thank you very much,
0 件のコメント
採用された回答
Matt Tearle
2014 年 11 月 4 日
Counting the number of samples with a given criterion is easy enough:
threshhold = pi;
nnz(X < threshhold)
The ecdf (empirical CDF) function might also help.
4 件のコメント
Matt Tearle
2014 年 11 月 5 日
For a single column bsxfun is overkill. mean(X < threshold) would do it.
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!