How to find columns by name in a cell aray
11 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
012786534
el 11 de Abr. de 2017
Comentada: 012786534
el 11 de Abr. de 2017
Hello all,
Let's say I have a large cell array with similar variable names in the first row (A_F1 , B_F2 , A_F2 , G_F5 ...) followed by data.
I want to create a smaller cell array with just the columns where the variable name starts with A.
How would I do that?
Thank you
0 comentarios
Respuesta aceptada
Stephen23
el 11 de Abr. de 2017
Editada: Stephen23
el 11 de Abr. de 2017
This is easy with strncmp:
>> inp = {'A_F1','B_F2','A_F2','G_F5';1,2,3,4}; % demo matrix.
>> idx = strncmp(inp(1,:),'A',1); % indices of strings starting with A.
>> otp = inp(:,idx); % select those columns from inp.
As an alternative you could use the table class, and this task may well be easier.
Más respuestas (0)
Ver también
Categorías
Más información sobre Characters and Strings en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!