Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 grpstats 根据其他两列的分组来查找至少一列。有关该问题的更多详细信息,请参阅此链接 该函数如下所示:
grpstats(M,[M(:,1) M(:,2)],'min')
它如何返回索引而不是最小值?
grpstats根本无法返回索引而不是值。您必须编写一个等效的函数来获得感兴趣的索引,就像@Sam Roberts 在这里使用unique和findmatlab 的函数所做的那样。
grpstats
unique
find