gpt4 book ai didi

position - 列中最大值的 Octave 位置

转载 作者:行者123 更新时间:2023-12-03 11:33:24 25 4
gpt4 key购买 nike

我想按列查找矩阵中值的 argmax,例如:

1 2 3    2 3 3
4 5 6 ->
3 7 8

我觉得我应该能够在列上映射一个 argmax/posmax 函数,但我没有在 Octave 中看到一种特别直观的方法来做到这一点。

最佳答案

阅读 max函数文档 here

[max_values indices] = max(input);

例子:
input =

1 2 3
4 5 6
3 7 8

[max_values indices] = max(input)
max_values =

4 7 8

indices =

2 3 3

关于position - 列中最大值的 Octave 位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26205287/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com