Linear combination of cell arrays
조회 수: 4 (최근 30일)
이전 댓글 표시
Is there a compact way (without loops) to take linear combinations of cell arrays that contain the same type of data (matrices of various sizes) in each index of the cell array?
For example:
A = {rand(2, 2), ones(1, 2)}
B = {rand(2, 2), [3, 4]}
and I want a cell array, C, such that
C = 3*A + 4*B
I want to be able to handle a cell array of arbitrary length. I can do this with a for loop, but I was thinking that there must be a better way.
댓글 수: 0
채택된 답변
Peter Perkins
2013년 1월 25일
Either of these will work:
>> A = {rand(2, 2), ones(1, 2)}
>> B = {rand(2, 2), [3, 4]}
>> cellfun(@(a,b) 3*a + 4*b, A, B, 'UniformOutput',false)
ans =
[2x2 double] [1x2 double]
>> arrayfun(@(a,b) {3*a{:} + 4*b{:}}, A, B)
ans =
[2x2 double] [1x2 double]
Whether or not this is faster or more readable than a loop is another question. Hope this helps.
댓글 수: 0
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!