当前位置:   article > 正文

IndexError: index 9 is out of bounds for axis 1 with size 9

index 9 is out of bounds for axis 1 with size 9

报错1:IndexError: index 9 is out of bounds for axis 1 with size 9

肯定是下标搞错了,把出问题的代码行,每一个数组下标都检查一下,被赋值的一边也要检查

还有一个类似的报错:index 1 is out of bounds for axis 0 with size 1

  1. a = np.zeros((1, n - 1)) # 调用单个元素要用:a[0][下标]
  2. a = np.zeros(n - 1) # 调用单个元素要用:a[下标]即可

如果调用方式错误就会报上面的错

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:【wpsshop博客】
推荐阅读
相关标签
  

闽ICP备14008679号