Section: Mathematical Functions
eone
function takes only a single argument
y = eone(x)
where x
is either a float
or double
array. The output
vector y
is the same size (and type) as x
.
eone
function over the range [-5,5]
.
--> x = linspace(-5,5); --> y = eone(x); --> plot(x,y); xlabel('x'); ylabel('eone(x)');
which results in the following plot.