MATLAB: What's [Y,I]=max(AS,[],2);?

后端 未结 5 1208
傲寒
傲寒 2021-01-20 17:37

I just started matlab and need to finish this program really fast, so I don\'t have time to go through all the tutorials.

can someone familiar with it please explain

5条回答
  •  甜味超标
    2021-01-20 18:19

    This function is taking AS and producing the maximum value along the second dimension of AS. It returns the max value 'Y' and the index of it 'I'.

提交回复
热议问题