- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在使用 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) ofFUN
can be returned without encapsulation in a cell array. Iftrue
(the default),FUN
must return scalar values that can be concatenated into an array. Iftrue
, the outputs must be of the following types: numeric, logical, char, struct, cell. Iffalse
,cellfun
returns a cell array (or multiple cell arrays), where the (I,J,...)th cell contains the value FUN(C{I,J,...}, ...). When'UniformOutput'
isfalse
, 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/
我正在使用 cellfun将函数应用于元胞数组中的每个元胞。 我知道我必须设置 'UniformOutput'每当函数返回非标量值时设置为 false,以便返回封装在元胞数组中的函数输出。 以下面的元
在 Matlab 中你可以做以下事情 x = {1:4, rand(3,3,3), 3}; [a, b, c] = cellfun(@size, x); 以上虽然不是标量输出,但不要求 Uniform
作为 cellfun(..., 'UniformOutput', false) 的频繁用户,我惊讶地发现后两个参数可以输入为 cellfun(... , 'un', 0)。这立即缩短了我的代码。我的问
我是一名优秀的程序员,十分优秀!