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

3 次查看(过去 30 天)
mbpmwex
mbpmwex 2023-5-22
回答: pxxagcv 2023-5-22
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
b={[1,3]}
for i=1:2
for j=1:4
if isequal(a(i,j),b)
i
j
end
end
end

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 MATLAB 快速入门 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!