在单元阵列中查找矩阵

时间:2017-01-11 18:24:54

标签: matlab matrix find cell

我有以下单元格数组

a{1, 1} = [1   3];
a{1, 2} = [5  63];
a{2, 2} = [11 11];

现在,从a开始,我想找到一个矩阵,其元素等于[11 11]

1 个答案:

答案 0 :(得分:5)

cellfun函数可用于将操作应用于单元阵列中的每个单元格。在这种情况下,您可以使用isequal中的函数anonymous function,如下所示:

randomTextView.setText("" + r.nextInt(10));