gpt4 book ai didi

matlab - 用 {} 运算符包装函数是 'UniformOutput' 的有效替代品,在 cellfun 中是 false 吗?

转载 作者:太空宇宙 更新时间:2023-11-03 19:11:09 25 4
gpt4 key购买 nike

我正在使用 cellfun将函数应用于元胞数组中的每个元胞。

我知道我必须设置 'UniformOutput'每当函数返回非标量值时设置为 false,以便返回封装在元胞数组中的函数输出。

以下面的元胞数组为例:

C1 = {[1 2 3], [4 5 6]};

C1 有两个单元格,每个单元格包含一个包含三个元素的向量:

C1 =

1×2 cell array

[1×3 double] [1×3 double]

如果我想将 1 添加到每个单元格的内容中,我可以定义函数 @(x) x + 1 并使用 cellfun 应用它如下:

C2 = cellfun(@(x) x + 1, C1, 'UniformOutput', false);

这非常有效,但请注意,我需要确保将 'UniformOutput' 设置为 false,如前所述,否则会抛出错误。

然而看完this thread ,我意识到如果我用 cell array construction operator {} 包装函数像这样 @(x) {x + 1} 那么我不需要将 'UniformOutput' 设置为 false

因此以下命令将生成与 C2 中相同的结果而不会抛出任何错误:

C3 = cellfun(@(x) {x + 1}, C1);

在代码布局方面,我更喜欢这种方法,因为它比前者更紧凑、更简洁,但我不确定这是否总是安全的。


因此我的问题是:

我能否始终使用 {} 包装函数以避免将 'UniformOutput' 设置为 false?或者是否存在此类替换不起作用的情况?


我的研究:

help cellfun

'UniformOutput' -- a logical value indicating whether or not the output(s) of FUN can be returned without encapsulation in a cell array. If true (the default), FUN must return scalar values that can be concatenated into an array. If true, the outputs must be of the following types: numeric, logical, char, struct, cell. If false, cellfun returns a cell array (or multiple cell arrays), where the (I,J,...)th cell contains the value FUN(C{I,J,...}, ...). When 'UniformOutput' is false, the outputs can be of any type.

以下片段是 an answer 的一部分相关问题:

[...] cellfun takes care of the dereference operation which is required to do detailed operations on individual elements of a cell when looping (that is, the {}) [...]

最佳答案

我可以想到两种使用 cell encapsulation 的场景而不是附加参数 ...'UniformOutput', false)会导致问题,第一个比第二个更有可能出现:

  • 捕获多个输出:有时您可能希望从正在应用的函数中捕获多个输出,例如调用 unique在元胞数组的每个元素上并获取额外的索引参数。使用 ...'UniformOutput', false) 我们可以轻松做到这一点:

    >> C1 = {[1 2 3], [4 5 6]};
    >> [C2, index] = cellfun(@(x) unique(x), C1, 'UniformOutput', false)
    C2 =
    1×2 cell array
    [1×3 double] [1×3 double]
    index =
    1×2 cell array
    [3×1 double] [3×1 double]

    但是,当使用单元封装时,这会失败:

    >> [C2, index] = cellfun(@(x) {unique(x)}, C1)
    Output argument "varargout{2}" (and maybe others) not assigned during call to
    "@(x){unique(x)}".
  • 没有输出的函数:我知道你在想什么:“但如果它们不产生输出,那么我就不必担心收集非标量值!” 是的,但我正在想象一个公认的不寻常场景,其中要评估的函数可能是一个附加参数,例如作为参数传递的函数句柄,因此您无法先验地知道 您将处理多少输出。无论如何,对于这种情况,这两种方法是不同的:

    >> C1 = {[1 2 3], [4 5 6]};
    >> cellfun(@(x) disp(x), C1, 'UniformOutput', false);
    1 2 3
    4 5 6

    >> cellfun(@(x) {disp(x)}, C1);
    Error using disp
    Too many output arguments.
    Error in @(x){disp(x)}

    可能您永远不必担心,但我想为了完整起见我会把它包括在内。

关于matlab - 用 {} 运算符包装函数是 'UniformOutput' 的有效替代品,在 cellfun 中是 false 吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44102736/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com