I want to create a 'if' for a probability

1 view (last 30 days)
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?

Accepted Answer

Voss
Voss on 24 Nov 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

More Answers (0)

Community Treasure Hunt

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

Start Hunting!