필터 지우기
필터 지우기

selecting rows from column vectors

조회 수: 5 (최근 30일)
desert_scientist90
desert_scientist90 2020년 7월 17일
댓글: desert_scientist90 2020년 7월 19일
Hi all, I have 10 column vectors with 52,520 observations. I want to extract expecfic observation rows per column vectors, I am trying to use the following code without any luck ( getting a 0*10 table). Is there any reference or other way to do this I can look to?
Thanks in advance
load mpw %dataset
h103 = mpw(mpw.hid=='103',:); %103 is the sample ID across 512 rows * 10 columns ( on this step I am getting a 0*10 table
h103(1:512,{'v1','v2','temp1','temp2','rh1','rh2'});

채택된 답변

madhan ravi
madhan ravi 2020년 7월 17일
mpw.hid=='103'
With
strcmp(mpw.hid,'103')
  댓글 수: 2
madhan ravi
madhan ravi 2020년 7월 17일
Or use ismember() if you’re using an older version.
desert_scientist90
desert_scientist90 2020년 7월 19일
Thanks,this is a life saver!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Identification에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by