MATLAB数组处理相关命令 1. 间隔取数a= b(begin:step:end),begin 是开始的数字序号值,step是间隔多少个数,end是结束的数字序号值2. 找到数组中某一个数的序号a = find(b == X), b是原数组,X是想找到的数。3. 取一维数组的大小length(a); Other 2023-05-18 51 点赞 0 评论 77 浏览