matlab 如何在元胞数组cel​l中查找到某个元素的​位置要求输出行列。

matlab 如何在元胞数组cell中查找到某个元素的位置要求输出行列
比如
a{[1,2],[1,3] [1,4] [1,5] ;[2,2] [2,3],[2,4],[2,5]}
找出[1,3]的行列。帮帮忙,谢谢!

 采纳的回答

pxxagcv
pxxagcv 2023-5-22

0 个投票

b={[1,3]}
for i=1:2
for j=1:4
if isequal(a(i,j),b)
i
j
end
end
end

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 MATLAB 快速入门 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!