MATLAB:同时附加到元胞数组的多个元素
我想在项目(要附加)的循环中一次将一个项目附加到元胞数组的多个元素。例如,
nodes(nodesHere,1) = cellfun(@(x)[x items(i)], nodes(nodesHere,1),'UniformOutput',false);
nodes
的元素可以是任何数组类型。
是否有等效的方法,仅依赖于索引,而不是上面使用的相对更昂贵的闭包?
I want to append an item to multiple elements of a cell array, at once, in a loop over the items (to be appended). E.g.
nodes(nodesHere,1) = cellfun(@(x)[x items(i)], nodes(nodesHere,1),'UniformOutput',false);
The elements of nodes
might be any array type.
Is there an equivalent way, relying only on indexing, rather than the relatively more expensive closure used above?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的意思是像
我知道代码不适用于任何类型的数组,但如果您主要使用数字数据,它就会起作用。
Do you mean something like
I know the code won't work for ANY type of array, but it would do the trick if you use mostly numeric data.