how to find columnnumber of a specific headername?
조회 수: 2 (최근 30일)
이전 댓글 표시
I have a dataset 69x821. I used this code:
[num, txt, raw] = xlsread('data_copy');
In txt are all the headers for the variables. I want to find the columnnumber for the header 'TRIG'. I looked manually and it is on columnnumber 814. How can I let Matlab find me this number?
댓글 수: 0
답변 (1개)
Walter Roberson
2015년 11월 9일
[tf, idx] = ismember('TRIG', txt(1,:));
If it is found then tf will be true and txt{1,idx} will be the 'TRIG' that is looked for
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Arduino Hardware에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!