필터 지우기
필터 지우기

how to plot the graph showing different data points within restricted boundary of sigma level?

조회 수: 6 (최근 30일)
i want to draw graph between y and x. Y consists of different data values and x is time. graph also include two boundary i.e (sigma level) 3 sigma and 1 sigma.As per reference i had attached the picture with it. how to draw this graph in matlab

채택된 답변

José-Luis
José-Luis 2016년 6월 29일
편집: José-Luis 2016년 6월 29일
aH = axes;
plot(aH,rand(100,1),'k.'); hold on;
sigma1 = 0.2;
sigma3 = 0.8;
plot(aH, aH.XLim, [sigma1, sigma1], 'k-');
plot(aH, aH.XLim, [sigma3, sigma3], 'k-');
  댓글 수: 3
MUKESH VIKRAM
MUKESH VIKRAM 2016년 7월 1일
In this plot, if i want to identify all the points within these two boundary lines.How to do this?

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graph and Network Algorithms에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by