本文共 130 字,大约阅读时间需要 1 分钟。
a = [ 1 2 3 3 3];
如果a==3
返回[ 0 0 1 1 1];
find(a==3)
返回[3 4 5],这才是想要的下标。
转载于:https://www.cnblogs.com/hxsyl/p/5040927.html