www.gusucode.com > symbolic 源码程序 matlab案例代码 > symbolic/PlotTheComplementaryErrorFunctionExample.m

    %% Plot Complementary Error Function
% Plot the complementary error function on the interval from -5 to 5.
syms x
fplot(erfc(x),[-5,5])
grid on