不可以,如果是递减数列,必须指定一个小于零的步长。如:for i = 100 : -1 : 1 ; …… ; end;
可以的步长设定一下:如:for i=100:-2:1 iend
matlab 语句for i=100:-1:1endfor后面是一个向量就行了-1是步长
换句话说,缺省的步长为1