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