I want to create a 'if' for a probability

1 visualización (últimos 30 días)
Nicholas Mathison Aba
Nicholas Mathison Aba el 24 de Nov. de 2021
Respondida: Voss el 24 de Nov. de 2021
How would I write that the prbability that I eat carrots this year knowing that I ate carrots last year is of 80%. And that the probabilities that I eat carrots this year knowing I didnt eat carrots last year is of 40%. Could you please help me out with this?

Respuesta aceptada

Voss
Voss el 24 de Nov. de 2021
ate_carrots_last_year = false;
if ate_carrots_last_year
P_eat_carrots_this_year = 0.8;
else
P_eat_carrots_this_year = 0.4;
end

Más respuestas (0)

Categorías

Más información sobre Power and Energy Systems 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!

Translated by