Computes the dawson function for real arguments. The 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.
The dawson function is defined as
Here is a plot of the dawson function over the range [-5,5].
--> x = linspace(-5,5);
--> y = dawson(x);
--> plot(x,y); xlabel('x'); ylabel('dawson(x)');
which results in the following plot.