本文介绍了寻找最大值时,索引超出矩阵尺寸的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我一直在尝试从数组中找到最大值.但是我一直收到以下错误.请告知.
I have been trying to find the max value from an array. But I keep getting the following error. Please advise.
scores = [19212 56722 73336 44805 47268]
max(scores)
??? Index exceeds matrix dimensions.
推荐答案
您可能有一个名为max
的变量.尝试
you probably have a variable called max
. Try
clear max
max(scores)
这篇关于寻找最大值时,索引超出矩阵尺寸的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!