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
0 个评论
回答(1 个)
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!