Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个名为 STEV 的向量(它包含 12 个数字)
然后我在这个向量中找到最大值:maxx=max(STEV)
maxx=max(STEV)
我接下来要做的是在向量(STEV)中找到这个最大值(maxx)的索引。
所以我这样做:i=find(STEV==maxx)
i=find(STEV==maxx)
但是这行代码似乎有问题,因为我得到了索引越界异常。
图片: