An octave/MATLAB u(t) function example
Jump to navigation
Jump to search
To make a unit step function in Octave, put the following in a file called u.m. This also works in MATLAB.
function junk = u(time) junk=.5*(sign(time)+1); endfunction