find size uniformity in matlab along a cell array
3 次查看(过去 30 天)
显示 更早的评论
good morning, I have a cell array like:
A= {[1 19 65];[ 5];[8 8 3]; [9 7 43]}
and I want to know if its dimensions are costant along the array (of course in this case the answer should be negative because it is made of 3 [1 x 3] cells and one [1 x 1] cell). Any idea about how to do it without a for loop?
Thanks
0 个评论
回答(2 个)
Adam
2015-3-5
dim = size( A{1} );
allDimsSame = all( cellfun( @(x) isequal( size(x), dim ), A ) );
will give you the correct answer, but is likely slower than a simple for loop, especially if you have a vast cell array and the 2nd element differs in size from the first which would terminate a loop immediately after 1 comparison.
2 个评论
Adam
2015-3-5
编辑:Adam
2015-3-5
allDimsSame = true;
dim = size( A{1} );
for i = 2:numel(A)
if ~isequal( size( A{i} ), dim )
allDimsSame = false;
break;
end
end
should jump out of a for loop as soon as a cell containing a different sized element is found.
If you want to exclude cells of a different size to the first then we should go back to the first answer (or a for loop equivalent of it which is likely still faster even without early termination) with a slight change:
dimsSame = cellfun( @(x) isequal( size(x), dim ), A );
A( ~dimsSame ) = [];
dimsSame is a logical array so everywhere it is 0 the cell contents were a different size so we just replace them with empty which deletes them from the array.
Whatever you do, do not attempt to delete elements from the cell array in the middle of a for loop!
Stephen23
2015-3-5
编辑:Stephen23
2015-3-9
The cellfun options listed under "Backwards Compatibility" are much faster than normal cellfun calls:
>> A = {[1,19,65]; [5]; [8,8,3]; [9,7,43]};
>> any(diff(cellfun('size',A,1))) % check the first dimension
ans = 0
>> any(diff(cellfun('size',A,2))) % check the second dimension
ans = 1
tell us that one of the column sizes is different.
1 个评论
Guillaume
2015-3-5
Yes, isn't it ironic that a deprecated syntax is much more performant than its replacement?
另请参阅
类别
在 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!