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

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

 Accepted Answer

pxxagcv
pxxagcv on 22 May 2023

0 votes

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

More Answers (0)

Categories

Find more on MATLAB 快速入门 in Help Center and File Exchange

Tags

Asked:

on 22 May 2023

Answered:

on 22 May 2023

Community Treasure Hunt

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

Start Hunting!