我有矩阵
public void beginConversation(){
if (!conversation.isTransient()){
conversation.end();
}
conversation.begin();
}
在这里,我想找到值为“8”的坐标。所以,应该有一个坐标,如:
A =
8 0 8 8 1
0 6 8 1 1
5 8 1 1 8
答案 0 :(得分:2)
使用MATLAB的查找功能:
[row,col] = find(A==8);