getting first element of each cell array with different sizes
127 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Stephen23
2017-10-18
编辑:Stephen23
2017-10-18
>> C = {[8,14];[10,14,15];[9,14];[5,14]};
>> cellfun(@(v)v(1),C)
ans =
8
10
9
5
1 个评论
Stephen23
2017-10-18
And to allow for empty arrays:
>> C = {[8,14];[10,14,15];[9,14];[5,14];[]};
>> idx = ~cellfun('isempty',C);
>> out = zeros(size(C));
>> out(idx) = cellfun(@(v)v(1),C(idx))
out =
8
10
9
5
0
更多回答(2 个)
Christian Keine
2017-10-18
There are at least two possible ways this could be done. First, you could loop through the cell array and extract the first value of each cell. This is, however, probably not the most elegant or fastest solution. The second option is to use cellfun in combination with an anonymous function which extracts only the first value of each cell, which should work faster for large arrays and is easier to read.
To do so, first define the function that should be executed for each cell:
fun = @(x) x(1)
Then apply this function to each cell in the array using cellfun with x being you cell array
firstElement = cellfun(fun,x)
Using your data it would look like this:
x = {[8,14],[10,14,15],[9,14],[5,14]}
fun = @(x) x(1)
firstElement = cellfun(fun,x)
Hope this is helpful.
3 个评论
Daniel Rieger
2019-7-10
编辑:Daniel Rieger
2019-7-10
Hello guys,
what if i only want to obtain the first entry of the first cell?
Or more general: what if i want a specific entry not for each but only for one cell?
I could also use and then cut out the entries that i dont need, but is there a more elegant way?
% N: wanted entry
all_entry = cellfun(@(v)v(1),C)
wanted_entry = all_entry(N)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Cell Arrays 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!