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

    %% Plot Imaginary Error Function
% Plot the imaginary error function on the interval from -2 to 2. 
syms x
fplot(erfi(x),[-2,2])
grid on