how to act on a probability
Ältere Kommentare anzeigen
I have a simulation for the Grade of Service of a circuit switched mobile network and I need to include how many calls get dropped I have the probabilities for each call and i need to find how many would be dropped in a given run of the simulation. I have no idea how to do this. are there any matlab functions built for realising a probability in a simulation?
Akzeptierte Antwort
Weitere Antworten (1)
Walter Roberson
am 17 Okt. 2022
0 Stimmen
Well, there are two different approaches:
- you could calculate statistically, probability times number of calls, and round() or floor() or ceil() to get a integer. This assumes uniform random distribution; OR
- you could model time-step by time-step, creating new calls, hanging up existing calls normally, faulting existing calls. This might make it easier to model increased probability of dropping calls if the system is busier. You would have to decide whether the "hanging up" is processed before or after the "create new calls" since the creation of new calls needs to fail if you are over capacity.
Kategorien
Mehr zu Operators and Elementary Operations finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!