在 Matlab 中,我可以通过以下方式计算列表的最大值及其位置:
[maxValue, idxMaxValue] = max(L)
在 Latex 中描述算法时如何标示索引?
v = argmax(L) %for the max value
i = ? %for the idx (position) of the max value
在 Matlab 中,我可以通过以下方式计算列表的最大值及其位置:
[maxValue, idxMaxValue] = max(L)
在 Latex 中描述算法时如何标示索引?
v = argmax(L) %for the max value
i = ? %for the idx (position) of the max value