8 lines
141 B
Matlab

function output = x(obj)
%X Generate a simulation timeline (used as x axis for plotting)
% x(PP)
output = (0:obj.dt:obj.tstop)';
end