Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Indexing (or maybe cellfun?) problem - appending numbers from a vector to rows/cols of cell array

조회 수: 1 (최근 30일)
Hi Suppose I have a cell array of doubles....
a = { [1] [2] [3] ; [4] [5] [6] }
If I also have a vector....
b = {[6] [7] [8]}
How can I 'append' the vector to a row of the array, so that I end up with...
a = { [1,6] [2,7] [3,8] ; [4] [5] [6] }
I know I could use loops, but in reality a is multidimensional, and both a and b are very large, so the problem is that this takes several hours (in nested loops) at the moment. (I suspect that this may be a matter of clever use of cellfun and maybe a custom inline function, rather than indexing though...but I just can't figure it!) Cheers, Arwel

답변 (1개)

Andrei Bobrov
Andrei Bobrov 2013년 6월 13일
a(1,:) = cellfun(@(x,y)[x,y],a(1,:),b,'un',0)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by