Coloring regions and plotting boundaries

Hello I am solving a question about bayesian decision in which I have to plot P(w1/x) and P(w2/x) and color the decision regions and set vertical line boundaries for each region as in the attached photo. I know how to write the equations and do the plot but I have no prior experience in coloring the regions and setting the boundaries. If you can give me any help I would be very grateful. Thank you

답변 (1개)

darova
darova 2019년 10월 8일

0 개 추천

Use can use patch() !
x = linspace(0,10);
y = sin(x);
plot(x,y)
p = patch([1 1 2 2],[-1 1 1 -1],'');
set(p,'FaceAlpha',0.2)
set(p,'EdgeColor','none')
img1.png

댓글 수: 2

Hani Haidar
Hani Haidar 2019년 10월 8일
The problem is that I don't know the boundaries. I want to color the region where P(w1/x) > P(w2/x) and vice versa each in a different color
darova
darova 2019년 10월 8일
I think intersections should be found

댓글을 달려면 로그인하십시오.

카테고리

도움말 센터File Exchange에서 Line Plots에 대해 자세히 알아보기

질문:

2019년 10월 8일

댓글:

2019년 10월 8일

Community Treasure Hunt

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

Start Hunting!

Translated by