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