extract an array from cell with its indexes

1 次查看(过去 30 天)
I have a cell array of following type,
clstr= { [] 8 [7,8] [6,8] [6,7] [6,7,8] 5 4 [4,8] [4,7,8] [4,6,7] [4,6,7,8] [4,5] [4,5,8] [4,5,7] }
i have another matrix named ter=[4,5], what i want is to see if clstr has this value and if it has then get the index value of [4,5] from clstr. Which in this case is going to be 13. I have used following command but it doesn't help me with what i need.
cellfun(@(x)(ismember(ter,x)),clstr,'UniformOutput',false)
can anyone help me please.

采纳的回答

Stephen23
Stephen23 2019-12-26
编辑:Stephen23 2019-12-26
>> clstr = {[],8,[7,8],[6,8],[6,7],[6,7,8],5,4,[4,8],[4,7,8],[4,6,7],[4,6,7,8],[4,5],[4,5,8],[4,5,7]};
>> ter = [4,5];
>> idx = find(cellfun(@(m)isequal(m,ter),clstr))
idx = 13

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Matrix Indexing 的更多信息

产品


版本

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by