An octave/MATLAB u(t) function example

From Class Wiki
Revision as of 14:33, 12 October 2010 by Frohro (talk | contribs) (Created page with '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')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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