comparison m-toolbox/classes/+utils/@math/unitStep.m @ 0:f0afece42f48

Import.
author Daniele Nicolodi <nicolodi@science.unitn.it>
date Wed, 23 Nov 2011 19:22:13 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:f0afece42f48
1 % unitStep
2 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
3 %
4 % DESCRIPTION: Unit step function. In zero it returns 1.
5 %
6 % VERSION: $Id: unitStep.m,v 1.1 2011/06/01 13:09:14 congedo Exp $
7 %
8 % HISTORY: 31-05-2011 G. Congedo
9 %
10 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12 function y = unitStep(x)
13 y = +(x>=0);
14 end