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!