0

我有一个具有以下结构的矩阵

X    Y    ID
1    2    10
15   20    2

我想根据 ID 列查找行的索引。请给我建议。

4

1 回答 1

3

使用find

ind = find(M(:,3) == id)

您可以添加'first''last'喜欢find(M(:,3) > id, 'first').

于 2013-06-04T15:30:57.873 回答