how to find columnnumber of a specific headername?

2 visualizaciones (últimos 30 días)
Sam
Sam el 9 de Nov. de 2015
Respondida: Walter Roberson el 9 de Nov. de 2015
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?

Respuestas (1)

Walter Roberson
Walter Roberson el 9 de Nov. de 2015
[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

Categorías

Más información sobre Arduino Hardware en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by