Extracting a subset data from column 2 based on column 1
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Marcella Roth
el 10 de Feb. de 2021
Comentada: Iuliu Ardelean
el 10 de Feb. de 2021
Hi, I'm trying to extract a subset of data from column 2 that corresponds with column 1. For example, I need to extract values in column 2 that correspond to the values 40-70 in column 1. Column 1 is the time and Column 2 is the magnitude. I want to extract the magnitude for a certain time set.
Thanks!
0 comentarios
Respuesta aceptada
Iuliu Ardelean
el 10 de Feb. de 2021
Hey
I assume your data looks something like this:
time = 1:100;
magnitude = rand(1,100);
selection = magnitude(time>40 & time<70);
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Octave 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!