필터 지우기
필터 지우기

ploting/graphing confidence interval

조회 수: 1 (최근 30일)
Osita Onyejekwe
Osita Onyejekwe 2017년 1월 19일
댓글: Star Strider 2017년 1월 19일
after doing statistical calculations I have the following confidence intervals
Confidence_interval_Negative_INFLPS =
0.0054 0.0065 0.0001 0.0286 0.0206 0.0075 -0.0237 0.0485 0.0541
0.0071 0.0108 0.0062 0.0367 0.0313 0.0175 -0.0102 0.0638 0.0812
The first row is the upper bound and the bottom row is the lower bound. Here is the true data below,
dist_to_origin_observed_negative_original =
0.0054 0.0262 0.0954 0.1577 0.2355 0.4000 0.5194 0.6543 0.8047
I have to show whether each of the points above fall within the confidence intervals of the upper and lower bound as shown in the first two sets. The total length of both data sets is 9 and they go in order, first with first 2, second with second 2, third with third 2...all the way till the last 9th value with the last 2 sets. I just need to plot the confidence interval. Please help me achieve this.. Thank you

채택된 답변

Star Strider
Star Strider 2017년 1월 19일
You need the plot and hold functions:
Confidence_interval_Negative_INFLPS = [0.0054 0.0065 0.0001 0.0286 0.0206 0.0075 -0.0237 0.0485 0.0541
0.0071 0.0108 0.0062 0.0367 0.0313 0.0175 -0.0102 0.0638 0.0812];
dist_to_origin_observed_negative_original = [0.0054 0.0262 0.0954 0.1577 0.2355 0.4000 0.5194 0.6543 0.8047];
figure(1)
plot(Confidence_interval_Negative_INFLPS(1,:), '-b')
hold on
plot(Confidence_interval_Negative_INFLPS(2,:), '-b')
plot(dist_to_origin_observed_negative_original, 'gp')
hold off

추가 답변 (1개)

Osita Onyejekwe
Osita Onyejekwe 2017년 1월 19일
thank you! :)

카테고리

Help CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by