Azzera filtri
Azzera filtri

Probability (U>X).

2 visualizzazioni (ultimi 30 giorni)
ABU SADAT MOHAMMAD SAYEM
ABU SADAT MOHAMMAD SAYEM il 8 Mar 2020
Here U have been generated uniformly from [0,1]. X is in the range[.4,.6]. What should the algorithm for this problem and how to plot it?

Risposta accettata

Walter Roberson
Walter Roberson il 8 Mar 2020
When U is in [0,1] and X is any single value in that range, then the probability that is
When U is in [0,1] and X is a range of values in that range, you should not really be asking for : you should be asking for and in the uniform random case, that would be max(X)-min(X)
  3 Commenti
Walter Roberson
Walter Roberson il 8 Mar 2020
That depends upon whether you need to simulate the probabilities, or to calculate the probabilities.
Walter Roberson
Walter Roberson il 8 Mar 2020
In order to simulate, you are going to need to break down the probability range into a number of "bins", such as every 0.01 probability. Let the number of bins be called N. Create a vector of counts, C, which is B long.
Now generate a random number, U. Multiply it by B, and take the ceiling. If you are using any of the MATLAB supplied random number generators, the result will be at least 1. Now add 1 to every entry in C that is indexed from 1 to that number.
Repeat this random number generation a number of times.
Now for any given entry in C, at index K, then C(K) is the probability that U was at least (K-1)/B

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by