Linear combination of cell arrays

1 次查看(过去 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.

采纳的回答

Peter Perkins
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 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by