Given a cell array, find the longest string
10 次查看(过去 30 天)
显示 更早的评论
Preferably without using loops, I need to find the longest string in a cell array. So with an example array such as the following, in what ways could I go about this? If there are multiple entries with the same length, I need to be able to find both of them.
I'd like to see a way to do it with loops as well.
Pete Townshend Toyota Gene Simmons Steve Jobs Socrates Frank Sinatra Astronomy Idaho Sweatshirt
Thanks
0 个评论
采纳的回答
Azzi Abdelmalek
2013-2-15
编辑:Azzi Abdelmalek
2013-2-15
a={'Pete' 'Townshend1' 'Simmons' 'Steve' 'Sinatra' 'Idaho' 'Sweatshirt'}
val=cellfun(@(x) numel(x),a)
out=a(val==max(val))
%With a loop
for k=1:numel(a)
val(k)=numel(a{k})
end
out=a(val==max(val))
1 个评论
Jan
2013-2-15
编辑:Jan
2013-2-15
cellfun('length', a) is much more efficient, because the string methods of cellfun() are determined inside the MEX function, while the anonymous functions need to call Matlab for each argument. Unfortunately these string methods are marked as "backward compatibility" feature only in the documentation, but this is an understatement.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!