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

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