www.gusucode.com > matlab 案例源码 matlab代码程序 > matlab/DecrementValuesExample.m

    %% Decrement Values
% Step by increments of |-0.2|, and display the values.

% Copyright 2015 The MathWorks, Inc.

for v = 1.0:-0.2:0.0
   disp(v)
end