An octave/MATLAB u(t) function example

From Class Wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

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