How to remove character in table
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Light.16
el 31 de En. de 2017
Comentada: Andrei Bobrov
el 31 de En. de 2017
Hello guys !
(Sorry 4 my english)
I'm trying to remove character in a table that contains some genome sequences (cell vector)... In particular i have:
A = {'T'; 'G'; 'A'; 'TT'; 'TGAT'; 'G'};
My intention is to delete all the rows that contain MORE than one letter.. so the rows 'TT' and 'TGAT' must be deleted.
Can you help me please? Is there some particular function that i can use?
Ty so much
0 comentarios
Respuesta aceptada
KSSV
el 31 de En. de 2017
A = {'T'; 'G'; 'A'; 'TT'; 'TGAT'; 'G'};
l = cell2mat(cellfun(@length,A,'un',0)) ;
A(l>1) = []
0 comentarios
Más respuestas (1)
Ver también
Categorías
Más información sobre Logical 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!