Borrar filtros
Borrar filtros

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

6 visualizaciones (últimos 30 días)
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

Respuesta aceptada

José-Luis
José-Luis el 29 de Jun. de 2016
Editada: José-Luis el 29 de Jun. de 2016
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 comentarios
MUKESH VIKRAM
MUKESH VIKRAM el 1 de Jul. de 2016
In this plot, if i want to identify all the points within these two boundary lines.How to do this?

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Graph and Network Algorithms en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by