thresholding data based on z-score

11 visualizaciones (últimos 30 días)
Christiane Voufo
Christiane Voufo el 22 de Nov. de 2019
Comentada: Christiane Voufo el 22 de Nov. de 2019
Hi All,
I'm attempting to threshold my data using their z-score values. However, it's not clear to me how I am meant to get actual z-score values if the zscore function in matlab give me a matrix where the columns are the values 1SD away when the mean is centered at 0. How could I threshold data to identify values with a z-score of 2 when the zscore function seems to give a matrix where all values have a z-score of 1. I might be reading the matrix incorrectly. CouldI please get some help with this?
Best,
Christiane
  4 comentarios
Christiane Voufo
Christiane Voufo el 22 de Nov. de 2019
I'm not sure I understood you question otherwise.
Christiane Voufo
Christiane Voufo el 22 de Nov. de 2019
Alright, turns out I was overthinking things. I was able to understand the matrix generated with some help from a lab member.

Iniciar sesión para comentar.

Respuesta aceptada

Image Analyst
Image Analyst el 22 de Nov. de 2019
Try this, assuming a 1-D signal:
zScores = zscore(signal)
% Get indexes where zScores > 2
indexes = zScores > 2;
signalWithZMoreThan2 = signal(indexes);
  1 comentario
Christiane Voufo
Christiane Voufo el 22 de Nov. de 2019
This is the answer that I got from a lab mate, not too long ago. Thank you for the input!!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Descriptive Statistics 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