% from a curve

2 visualizaciones (últimos 30 días)
lucas
lucas el 6 de Dic. de 2013
Comentada: lucas el 7 de Dic. de 2013
hello
i got one curve plotted that i maded using pwelch and i want to get one specific value (at 95% of the curve)
how do i get that?
thx
  1 comentario
Wayne King
Wayne King el 6 de Dic. de 2013
pwelch produces an estimate of the power spectral density, so what do you mean by 95%. I think you need to clarify 95% of what?

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 6 de Dic. de 2013
% Define the value we're looking for in our data, callled "theCurve".
threshold = 0.95 * max(theCurve); % or whatever you want.
% Find where this happens the first time.
theIndex = find(yourCurve > threshold, 1, 'first');
  1 comentario
lucas
lucas el 7 de Dic. de 2013
ty mate!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Numerical Integration and Differentiation en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by