最大参数: https ://en.wikipedia.org/wiki/Arg_max
由于存在一些混淆,我将描述 argmax 的作用:
argmax 查找函数的参数,以使该函数最大化。
Simple example: x * (10 - x)
x = 1 -> 1 * (10 - 1) = 9
x = 2 -> 2 * (10 - 2) = 16
...
x = 5 -> 5 * (10 - 5) = 25
x = 6 -> 6 * (10 - 6) = 24
所以在这个例子中,argmax 将给出 x = 5。argmax 应该对一个函数中的多个变量执行此操作。
我正在尝试从论文Provably Manipulation-Resistant Reputation Systems中解决这个公式:
X
是一个包含变量的矩阵,我想为其找到使公式最大化的值。
我已经用 Wolfram|Cloud 尝试过,但是免费计划的内存限制太小:Wolfram|Cloud memory limit exceeded
我有一个本地 MATLAB R2016b 版本,想在 MATLAB 中编写这个公式。
MATLAB 有 argmax 函数吗?