Extracting a subset data from column 2 based on column 1

조회 수: 4 (최근 30일)
Marcella Roth
Marcella Roth 2021년 2월 10일
댓글: Iuliu Ardelean 2021년 2월 10일
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!

채택된 답변

Iuliu Ardelean
Iuliu Ardelean 2021년 2월 10일
Hey
I assume your data looks something like this:
time = 1:100;
magnitude = rand(1,100);
selection = magnitude(time>40 & time<70);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by