probability - execution of an operation
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Thomas Kozinski
el 18 de Mzo. de 2021
Comentada: Paul
el 20 de Mzo. de 2021
Hello, my task is to calculate the probability:
The temperature in a certain city is modeled as a random variable T ∼ N (10◦, (10◦) 2). What is the probability that the temperature at a random time will not exceed 15?
If I counted it "mathematically on a piece of paper", I would calculate it like this, but can I do it faster and more efficiently in matlab?
Thank you in advance for your help!!!
2 comentarios
Respuesta aceptada
Paul
el 20 de Mzo. de 2021
If T has a normal distribution, then
doc normcdf
can be used to find the probability P(T < t)
4 comentarios
Paul
el 20 de Mzo. de 2021
Yes, except that based on your qeustion and subsequent comment sigma = 10, so it should be:
>> normcdf(15,10,10)
ans =
0.691462461274013
as shown in your original question.
Más respuestas (0)
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!