b=1:30;
t=round(length(b)*0.3);%取整
c=b(1:t)
如何提取一组行向量的前百分之30-matlab
最新推荐文章于 2024-06-12 09:10:07 发布
b=1:30;
t=round(length(b)*0.3);%取整
c=b(1:t)