How to remove character in table

3 次查看(过去 30 天)
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

采纳的回答

KSSV
KSSV 2017-1-31
A = {'T'; 'G'; 'A'; 'TT'; 'TGAT'; 'G'};
l = cell2mat(cellfun(@length,A,'un',0)) ;
A(l>1) = []

更多回答(1 个)

Andrei Bobrov
Andrei Bobrov 2017-1-31
out = A(cellfun(@numel,A) == 1)
  2 个评论
Light.16
Light.16 2017-1-31
really thanks you !! unfortunately I can not accept more than one answer..

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Genomics and Next Generation Sequencing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by