MATLAB:同时附加到元胞数组的多个元素

发布于 2024-10-21 15:23:48 字数 240 浏览 4 评论 0原文

我想在项目(要附加)的循环中一次将一个项目附加到元胞数组的多个元素。例如,

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

因为看清所以看轻 2024-10-28 15:23:48

您的意思是像

x = cell(1,5);
x(1:3) = num2cell([1, 2, 3]);
disp(x);

我知道代码不适用于任何类型的数组,但如果您主要使用数字数据,它就会起作用。

Do you mean something like

x = cell(1,5);
x(1:3) = num2cell([1, 2, 3]);
disp(x);

I know the code won't work for ANY type of array, but it would do the trick if you use mostly numeric data.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文